使用GCD,NSMutableArray和UITableView进行内存管理

时间:2013-05-06 22:56:50

标签: objective-c ios5 memory-management ios6 exc-bad-access

我现在已经被这个错误“EXC_BAD_ACCESS”困住了几个小时,我似乎无法找到错误。希望你们中的一些人能找到它。

我正在下载包含json-data的文件,将其保存为NSMutableArray中的自定义NSObject,然后将其呈现在UITableView中。当我要在UITableView中呈现它时,我会遇到问题。

ViewController.h

@property (nonatomic, retain) NSMutableArray *menuItems;

ViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];
    menuItems = [[NSMutableArray alloc] init];
}

- (void)viewDidAppear:(BOOL)animated
{
    [self downloadMenu];

}

-(void)downloadMenu
{
    dispatch_queue_t fetchfromServerQueue = dispatch_queue_create("fetchfromServer", NULL);

    [self createProgressionAlertWithMessage:@"Fetching menu"];

    dispatch_async(fetchfromServerQueue, ^{

        NSURL *menuURL = [NSURL URLWithString:@"anURL"];

        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:menuURL];

        NSError *error = nil;
        NSURLResponse *response;
        NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

        responseArray = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];

        menuItems = [[NSMutableArray alloc] initWithCapacity:[responseArray count]];

        for (int i = 0; i<[responseArray count]; i++) {
            NSDictionary *menuObject = [responseArray objectAtIndex:i];

            NSString *x = [NSString stringWithFormat:@"%@", [menuObject objectForKey:@"x"]];
            NSString *y = [NSString stringWithFormat:@"%@", [menuObject objectForKey:@"y"]];
            NSString *z = [NSString stringWithFormat:@"%@", [menuObject objectForKey:@"z"]];

            MenuItem *menuItem = [[MenuItem alloc] initWithX:x andY:y andZ:z];

            [menuItems addObject:menuItem];

            [menuItem release];
        }

        dispatch_async(dispatch_get_main_queue(), ^{
            [progressAlert dismissWithClickedButtonIndex:0 animated:YES];
            [menuTable reloadData];
        });
    });
    dispatch_release(fetchfromServerQueue);
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [menuItems count];
}

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    MenuItem *menuItem = (MenuItem *)[menuItems objectAtIndex:indexPath.row];

    cell.textLabel.text = [NSString stringWithFormat:@"%@", [menuItem x]];

    return cell;
}

On“cell.textLabel.text = [NSString stringWithFormat:@”%@“,[menuItem x]];”我得到“EXC_BAD_ACCESS(code = 1,address = 0xXXXXXXXX)”。

我不使用ARC,并且在不久的将来无法使用此项目进行转换。由于我对内存管理缺乏了解,这使它成为一个问题。

知道什么是错的?

THX!

#### #### #### #### #### #### #### #### ####

这就是MenuItem的样子:

#import <Foundation/Foundation.h>

@interface MenuItem : NSObject
{
    NSString *x;
    NSString *y;
    NSString *z;
}

-(id)initWithX:(NSString *)x_ andY:(NSString *)y_ andZ:(NSString *)z_;
-(NSString *)x;
-(NSString *)y;
-(NSString *)z;

@property(retain, nonatomic) NSString *x;
@property(retain, nonatomic) NSString *y;
@property(retain, nonatomic) NSString *z;

@end

#import "MenuItem.h"

@implementation MenuItem

@synthesize x;
@synthesize y;
@synthesize z;

-(id)initWithX:(NSString *)x_ andY:(NSString *)y_ andZ:(NSString *)z_
{
    self = [super init];
    if(self)
    {
        x = x_;
        y = y_;
        z = z_;
    }

    return self;
}

-(void)dealloc
{
    [x release];
    [y release];
    [z release];
    [super dealloc];
}

-(NSString *)x
{
return x;
}

-(NSString *)y
{
    return y;
}

-(NSString *)z
{
    return z;
}

@end

2 个答案:

答案 0 :(得分:1)

我没有看到任何明显的东西,menuItem中的某些东西可能导致了这个问题? [menuItem x]做了什么?

一般情况下,使用zombies instrument运行应用程序:cmd-i,然后选择Zombies。这将为您提供抛出EXC_BAD_ACCESS的对象的分配/释放的跟踪。

祝你好运。

答案 1 :(得分:0)

这有点奇怪:

-(void)downloadMenu
{
    dispatch_queue_t fetchfromServerQueue = dispatch_queue_create("fetchfromServer", NULL);
    dispatch_async(fetchfromServerQueue, ^{
        ...
    });
    dispatch_release(fetchfromServerQueue);
}

您创建一个队列并为其指定一个异步任务。当这个任务开始做一些工作,然后立即释放队列。如果异步任务在您释放之前未完成,则可能会导致一些问题。

您可能希望暂停发布,直到异步调用中的工作完成为止。