iOS 5中的Twitter使用ARC泄漏内存

时间:2012-08-20 13:06:06

标签: iphone ios xcode cocoa-touch ipad

enter image description here

这是我的代码:

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引起的大量泄漏,我不知道如何处理它。谢谢!

1 个答案:

答案 0 :(得分:0)

创建TWTweetComposeViewController或twitter类的属性,或者你可以在AppDelegate类中更多地分配它。它会起作用。