当我使用TWTweetComposeViewController addImage:方法用图片发推文时,它总是显示“无法发送推文”警报(如下图所示)。但是可以在实际的iOS设备上发送相同的推文。
任何人都知道发生了什么事?
代码:
TWTweetComposeViewController *tweetViewController = [[TWTweetComposeViewController alloc] init];
[tweetViewController setInitialText:@"sent from MyTwitterApp"];
[tweetViewController addImage:imageToSave];
[self presentModalViewController:tweetViewController animated:YES];
* imageToSave 是从照片库中选择的UIImage对象