2011-11-08 12 views
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]; 
}]; 
+0

[TWRequest release];を変更することをお勧めします:[TWRequestリリース];漏れがどのラインが漏れているかを教えてくれますか? –

+0

'NSObject'のインスタンスに送ることができるどんなメッセージでも、あなたはクラスに送ることができます。 '[TWRequest release];'は動作しません。 – hypercrypt

+0

XcodeでAnalyzeを実行すると、おそらくエラーが表示されます。 – zaph

答えて

2

あなたは、私はこの作品驚い[postRequest release];

+0

ああ、どうして私はそれを逃しましたか、ありがとう。 – cal

関連する問題