开发者

How can I get the email id list using Twitter Integration in the iPhone SDK?

How can I get the Twitter email id list in the iPhone sdk?

I'm usin开发者_如何学Gog MGTwitterEngine and when I try the following method:

NSString *str2 = [_engine getUserInformationForEmail:@"yw8181@gmail.com"];

NSLog(@"User Email Id:--->%@",str2);;

so its return 0E156D0F-3E56-4935-9BE9-2A34786545ED so how can i display in tableView

I'm not getting email id list, please help me solve this issue.


What happens when you log it?

I'm guessing that it doesn't return an NSString, but another datatype like an NSArray? Try this:

NSArray *myArray = [_engine getUserInformationForEmail:@"yw8181@gmail.com"];
for (NSString *item in myArray) {
    NSLog(@"%@",item);
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜