是否可以使用设备上安装的Twitter应用程序向Twitter发布消息并自动返回我的应用程序?我可以用
打开twitter app NSURL* myUrl = [NSURL URLWithString:[NSString stringWithFormat:@"twitter://post?message=%@", sharingString]];
[[UIApplication sharedApplication] openURL:myUrl];
但之后无法自动返回。
对于Facebook来说,使用FBConnect和FBAuth有一个很好的方法,对于twitter有什么类似的东西吗?
答案 0 :(得分:1)
为什么不使用iOS 5 SDK附带的新TWTweetComposeViewController
?