2011-11-23 79 views
0

是否可以使用安裝在設備上的twitter應用程序將消息發佈到twitter並自動返回到我的應用程序?我可以打開推特應用程序Twitter與Twitter應用程序共享並返回到我的應用程序

NSURL* myUrl = [NSURL URLWithString:[NSString stringWithFormat:@"twitter://post?message=%@", sharingString]]; 
    [[UIApplication sharedApplication] openURL:myUrl]; 

但之後無法自動回覆。

對於Facebook有一個很好的方式來做到這一點與FBConnect和FBAuth,有什麼類似的Twitter?

回答

1

爲什麼不使用iOS 5 SDK附帶的新的TWTweetComposeViewController

相關問題