如何使用 iPhone SDK 中的 Twitter 集成获取电子邮件 ID 列表?

发布于 2024-12-01 03:20:45 字数 503 浏览 1 评论 0原文

如何在 iPhone sdk 中获取 Twitter 电子邮件 ID 列表?

我正在使用 MGTwitterEngine,当我尝试以下方法时:

NSString *str2 = [_engine getUserInformationForEmail:@"[email protected]"];

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

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

我没有获取电子邮件 ID 列表,请帮我解决这个问题。

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

I'm using MGTwitterEngine and when I try the following method:

NSString *str2 = [_engine getUserInformationForEmail:@"[email protected]"];

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仲春光 2024-12-08 03:20:45

当你记录它时会发生什么?

我猜它不会返回 NSString,而是返回另一种数据类型,例如 NSArray?
试试这个:

NSArray *myArray = [_engine getUserInformationForEmail:@"[email protected]"];
for (NSString *item in myArray) {
    NSLog(@"%@",item);
}

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:@"[email protected]"];
for (NSString *item in myArray) {
    NSLog(@"%@",item);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文