2011-12-15 46 views
0

我正在使用我的iPhone應用程序的Twitter API,我想得到我的Twitter朋友名單,我跟着舊帖子,但沒有得到答案,任何人請幫助我..如何獲得在iphone的朋友名單

(NSString *)getFollowersIncludingCurrentStatus:(BOOL)flag{ 
    NSString *str=[[NSString alloc]init]; 
    str =[_engine getFollowersIncludingCurrentStatus:YES]; 
    NSLog(@" string is %@ ",str); 
} 
-(void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier { 
    NSArray *mFollowerArray = nil; 
    mFollowerArray = [userInfo retain]; 
    NSLog(@"mfollwers arra is %@",mFollowerArray); 
} 
+0

@polynomial getFollowersIncludingCurrentStatus :(布爾)標誌我用這種方法,但我無法獲得列表 – Valli 2011-12-15 09:10:19

回答

-1

首先,twitter是關注者而不是朋友。檢查this鏈接。您可能會爲您的搜索找到方向。謝謝。

相關問題