在这里,我试图让twitter
使用
FHSTwitterEngine
. 这是我获取关注者并添加
dictionary
到NSMutableArray
打印的代码tableView
。
NSMutableDictionary *dict1 = [[FHSTwitterEngine sharedEngine]listFollowersForUser:usernames isID:NO withCursor:@"-1"];
NSLog(@"====> %@",[dict1 objectForKey:@"users"] );
twttrFrndListVC.twitterFrndList=[dict1 objectForKey:@"users"];
使用上面的代码,我可以获得关注者。但是当我试图同时获得追随者和追随者时,它不起作用。
NSMutableDictionary *dict1 = [[FHSTwitterEngine sharedEngine]listFollowersForUser:username isID:NO withCursor:@"-1"];
NSMutableDictionary *dict2 = [[FHSTwitterEngine sharedEngine] listFriendsForUser:username isID:NO withCursor:@"-1"];
NSLog(@"====> %@",[dict1 objectForKey:@"users"] );
twttrFrndListVC.twitterFrndList=[dict1 objectForKey:@"users"],[dict2 objectForKey:@"users"];
上面的代码仅返回关注者姓名。如何获取两个字典的值?我怎样才能将两个NSMutableDictionaries
合二为一
NSMutableArray
?两个字典都有相同的键。