2011-08-11 103 views

回答

1

根據this answer無法將圖片直接上傳到Twitter。你需要加載一些其他的照片分享網站,並在你的Twitter帖子中鏈接到它。我建議看看imgur。他們have an API你可能可以使用。

0

照片分享uplaod功能現在可在Twitter上找到,但沒有穩定的iphone版本發佈。

0

它在iOS的5很容易

只需包含頭文件#import "Twitter/Twitter.h",並在項目中添加框架Twitter.framework ..

然後添加下面的線爲一個按鈕動作:

TWTweetComposeViewController *tweeter = [[TWTweetComposeViewController alloc] init]; 
[tweeter setInitialText:@"message"]; // for posting text 
[tweeter addImage:image];   // for posting image 
[self presentModalViewController:tweeter animated:YES]; 
相關問題