2011-08-11 77 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]; 
相关问题