3
Imはios5でTWRequestを使用していますが、LeaksはTWRequestのメモリリークを報告しています。TWRequestが漏れていますか?
私はこのようなことをしています、私はどこかに間違っていますか?
TWRequest *postRequest = [[TWRequest alloc] initWithURL:[NSURL URLWithString:@"http://api.twitter.com/1/friendships/create.json"] parameters:[NSDictionary dictionaryWithObject:@"auser" forKey:@"screen_name"] requestMethod:TWRequestMethodPOST];
// Set the account used to post the tweet.
[postRequest setAccount:twitterAccount];
// Perform the request created above and create a handler block to handle the response.
[postRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
NSString *output = [NSString stringWithFormat:@"HTTP response status: %i", [urlResponse statusCode]];
[TWRequest release];
}];
に
[TWRequest release];
を変更することをお勧めします:[TWRequestリリース];漏れがどのラインが漏れているかを教えてくれますか? –'NSObject'のインスタンスに送ることができるどんなメッセージでも、あなたはクラスに送ることができます。 '[TWRequest release];'は動作しません。 – hypercrypt
XcodeでAnalyzeを実行すると、おそらくエラーが表示されます。 – zaph