2

我是 iOS 开发的新手。我在运行后台线程时遇到问题。在我的代码中,resetUi 在主 UI 线程上运行,现在我正在启动一个后台线程来获取图像数据并更新我的图像。一切正常,但调用 performSelectorInBackground 时内存泄漏。

请让我知道我在哪里做错了。另外请建议在从 URL(dataWithContentsOfURL)获取时是否有更好的方法来更新我的图像。

[更新]

仪器显示 2 个单独的泄漏,一个在 perfromSelectorInBackground,另一个在 UIImage imageWithData。我猜 imageupdate(imageWithData) 出了点问题

-(void)updateData{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];     

    profileName.text = oAuthTwitter.screen_name;

    if(profilePic.image == nil){
        NSString *urlString = @"https://api.twitter.com/1/users/profile_image/";
        urlString = [urlString stringByAppendingFormat:oAuthTwitter.screen_name];   
        urlString = [urlString stringByAppendingFormat:@"?size=bigger"];            
        profilePic.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:urlString]]];          
        [activityIndicator stopAnimating];
        [activityIndicator release];
    }   
    [pool drain];   

}   

- (void)resetUi{

    if (oAuthTwitter.oauth_token_authorized) {
        profilePic.hidden = NO;
        profileName.hidden = NO;

        NSLog(@"Resetting to authorised state");
        [self performSelectorInBackground:@selector(updateData) withObject:nil];

    }else{

        NSLog(@"Resetting Twitter UI to non-authorized state.");

    profilePic.hidden = YES;
        profileName.hidden = YES;       

    }

}   
4

1 回答 1

3

我认为你应该使用

[pool release];

而不是

[pool drain];

这是更好的做法。

你也可以尝试在主线程中释放activityIndi​​cator吗?

From the code you have given I can't find any other cause for leak.. Have you tried to run your code using leak instrument and static analyzer?

于 2012-05-30T06:31:09.070 回答