Ios UITableView和UINavigationController中的内存管理

Ios UITableView和UINavigationController中的内存管理,ios,uitableview,memory,uinavigationcontroller,Ios,Uitableview,Memory,Uinavigationcontroller,更新 我已经更新了代码,我发现我可以nil iconDownLoader或downloadArray,但不能两者都下载 我认为卸载中的nil与dealoc中的release不同?并且self.xxx=nil是必需的吗?我更新了密码。它工作得很好(虽然它没有释放所有的内存),但我并不真正理解它 你能解释一下原因吗?谢谢 我已经搜索了很多,但仍然无法解决这个内存管理问题。希望有人能帮我修好它,理解它的原理 我有一个UIViewController,其中有一个UITableView。tablevie

更新

我已经更新了代码,我发现我可以nil iconDownLoader或downloadArray,但不能两者都下载

我认为卸载中的nil与dealoc中的release不同?并且self.xxx=nil是必需的吗?我更新了密码。它工作得很好(虽然它没有释放所有的内存),但我并不真正理解它

你能解释一下原因吗?谢谢


我已经搜索了很多,但仍然无法解决这个内存管理问题。希望有人能帮我修好它,理解它的原理

我有一个UIViewController,其中有一个UITableView。tableview加载自定义单元格和图像。它每次都会消耗大量内存,并且在我启动ViewController后不会释放内存。多次按下并弹出viewController后,内存将上升到200m

这里是一些代码,任何帮助都将不胜感激

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

#pragma mark - View lifecycle

- (void)viewDidUnload
{
    self.newsArray = nil;
    self.newsTableView = nil;
    self.indicatorView = nil;
//  self.iconDownLoader = nil;
    self.downloadArray = nil;

    [super viewDidUnload];
}

... 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"NewsCellIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        [[NSBundle mainBundle] loadNibNamed:@"NewsTableViewCell" owner:self options:nil];
        cell = self.newsTableViewCell;
        self.newsTableViewCell = nil;
    }

    // read from newsModel
    NewsModel *news = [newsArray objectAtIndex:indexPath.row];

    UILabel *label;
    label = (UILabel *)[cell viewWithTag:10];
    label.text = [NSString stringWithString:news.title];
    label = nil;
    label = (UILabel *)[cell viewWithTag:11];
    label.text = [NSString stringWithString:news.description];
    UIImageView *imageView = (UIImageView *)[cell viewWithTag:12];
    imageView.image = news.image;

    if (news.image == nil)
    {
        imageView.image = [UIImage imageNamed:IconPlaceHolder];

        IconDownLoader *iconDownLoader = [[IconDownLoader alloc] init];
        iconDownLoader.url = news.imageUrl;
        iconDownLoader.delegate = self;
        iconDownLoader.indexPath = indexPath;
        if (appDelegate.ip4 == YES)
        {
            iconDownLoader.width = 300;
            iconDownLoader.height = 150;
        }
        else
        {
            iconDownLoader.width = 150;
            iconDownLoader.height = 75;
        }
        [downloadArray addObject:iconDownLoader];
        [iconDownLoader start];
    }
    return cell;
}

#pragma mark - IconDownLoaderDelegate

- (void)iconDownLoadFinsh:(NSData *)imageData row:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [newsTableView cellForRowAtIndexPath:indexPath];
    UIImageView *imageView = (UIImageView *)[cell viewWithTag:12];
    if (imageData != 0)
    {
        imageView.image = [UIImage imageWithData:imageData];
    }
    else
    {
        imageView.image = [UIImage imageNamed:@"icon57"];
    }
    NewsModel *newsModel = [newsArray objectAtIndex:indexPath.row];
    newsModel.image = [UIImage imageWithData:imageData];
}
这是IconDownloader

#import "IconDownLoader.h"
#import "ASIHTTPRequest.h"

@implementation IconDownLoader

@synthesize delegate = _delegate;
@synthesize url = _url;
@synthesize indexPath = _indexPath;
@synthesize width = _width;
@synthesize height = _height;
@synthesize request = _request;

- (void)start {

    NSString *originalString = @"width=%s&height=%s";
    NSString *newString = [NSString stringWithFormat:@"width=%d&height=%d&type=jpg", self.width, self.height];

    NSString *resizedURL = [self.url stringByReplacingOccurrencesOfString:originalString withString:newString];

    NSURL *url = [NSURL URLWithString:[resizedURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    _request = [ASIHTTPRequest requestWithURL:url];
    if (_indexPath) {
        _request.userInfo = [NSDictionary dictionaryWithObject:_indexPath forKey:@"indexPath"];
    }
    [_request setDelegate:self];
    [_request startAsynchronous];
}

- (void)requestFinished:(ASIHTTPRequest *)request {

    NSInteger statusCode = request.responseStatusCode;
    switch (statusCode) {
        case 401: // Not Authorized: either you need to provide authentication credentials, or the credentials provided aren't valid.
            break;

        case 200: {
            NSData *responseData = [request responseData];
            if (!responseData) {
                UIAlertView *alertView;
                alertView = [[UIAlertView alloc] initWithTitle:@"Oops" message:[NSString stringWithFormat:@"Download failed in row %d", _indexPath.row] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
                return;
            }
            [_delegate iconDownLoadFinsh:responseData row:[request.userInfo objectForKey:@"indexPath"]];
        }
            break;

        case 304: // Not Modified: there was no new data to return.
            break;
        case 400: // Bad Request: your request is invalid, and we'll return an error message that tells you why. This is the status code returned if you've exceeded the rate limit
            break;
        case 403: // Forbidden: we understand your request, but are refusing to fulfill it.  An accompanying error message should explain why.
            break;

        case 404: // Not Found: either you're requesting an invalid URI or the resource in question doesn't exist (ex: no such user). 
        {
            UIAlertView *alertView;
            alertView = [[UIAlertView alloc] initWithTitle:@"Oops" message:@"Classical 404, please contact with your administer" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        }
            break;
        case 500: // Internal Server Error: we did something wrong.  Please post to the group about it and the Weibo team will investigate.
        case 502: // Bad Gateway: returned if Weibo is down or being upgraded.
        case 503: // Service Unavailable: the Weibo servers are up, but are overloaded with requests.  Try again later.
        {
            UIAlertView *alertView;
            alertView = [[UIAlertView alloc] initWithTitle:@"Oops" message:@"503 error, service unavailable" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
        }
        default:{

        }
    }
}

- (void)dealloc {
    if (_request != nil) {
        [_request clearDelegatesAndCancel];
    }
}

@end

你没有发布
IconDownLoader

你没有发布
IconDownLoader
。你说得对,回答这个问题,你可以得到我的10美分:)一个简单的问题,如果我没有IconDownLoader,下载阵列中有什么,因为下载阵列中有很多IconDownLoader。([downloadArray addObject:iconDownLoader];)我应该按顺序将它们置零吗?如果我同时执行这些操作,将出现exc_bad_访问。self.iconDownLoader=nil;self.downloadArray=nil@思考克里斯:等等,你在用ARC吗?rm-rf:是的,为什么要问?刚刚尝试过,如果我删除self.downloadArray=nil;,则没有exc\u bad\u访问权限;。downloadArray是在initWithNibName中创建的。@ThinkChris:那么我的答案实际上是无效的。ARC应该会为你发布的。关于第一个问题,如果您稍后要访问
downloadArray
(顺便说一句,您应该使用
self.downloadArray
进行设置),那么您不想将其置为零。