这是我的代码:
case kTweetIndex:
{
TWTweetComposeViewController *tweetSheet =
[[TWTweetComposeViewController alloc] init];
[tweetSheet setInitialText:[NSString stringWithFormat:@"%@",self.item.link]];
[self presentModalViewController:tweetSheet animated:YES];
if (![TWTweetComposeViewController canSendTweet])
{
NSLog(@"Can't Send tweet");
}
}
这只是Twitter引起的大量泄漏,我不知道该如何处理。谢谢!
最佳答案
设置TWTweetComposeViewController或twitter类的属性,或者可以在AppDelegate类中对其进行更多分配。它将起作用。