如何在UITableViewController中释放实例变量

时间:2012-02-26 20:07:20

标签: objective-c ios cocoa-touch memory-management

我是iOS开发人员的新手,我在查找内存问题时遇到了麻烦。

我在UITableViewController的viewDidLoad方法中加载一个包含数据的数组。这是代码

- (void)viewDidLoad
{
[super viewDidLoad];    
// Get Data
PANewsListModel *info = [PADataSource getNewsList];
_data = [info.news];

NSLog(((PANewsModel *)[_data objectAtIndex:1]).title);

UIImageView *bkgrd = [[UIImageView alloc]initWithImage:[UIImage imageNamed:BACKGROUND_IMAGE]];
self.tableView.backgroundView = bkgrd;
self.tableView.rowHeight = 100;
}

在NSLog调用中,可以访问数据。

但是在填充TableCells的方法中,它会产生内存异常。这是代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    NSLog(@"tableView");
    static NSString *CellIdentifier = @"NewsCellID";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        [[NSBundle mainBundle] loadNibNamed:@"PANewsCellIB" owner:self options:nil];
        cell = tableCell;
        self.tableCell = nil;

        PANewsModel *newsItem = (PANewsModel *) [self.data objectAtIndex:1];

        UILabel *title = (UILabel *)[cell viewWithTag:101];
        title.text = newsItem.title; // This instruction gives EXC_BAD_ACCESS

    }

    [cell sizeToFit];
    return cell;
}

什么可以使实例变量在这些方法之间解除分配?

更新:更多信息

这是数据声明

.h
@property (nonatomic, retain ) NSMutableArray *data;
.m
@synthesize data = _data; 

和PANewsModel类

@interface PANewsModel : NSObject

@property (nonatomic, retain) NSString *title;
@property (nonatomic, retain) NSString *shortDescription;
@property (nonatomic, retain) NSString *description;
@property (nonatomic, retain) NSDate *date;
@property (nonatomic, retain) UIImage *photo;

-(id) initWithTitle: (NSString *) t 
          shortDesc: (NSString *) s 
        description: (NSString *) d
               date: (NSString *) date 
              image: (UIImage *)image;

@end

1 个答案:

答案 0 :(得分:0)

很难通过您发布的代码来判断,但您可能需要在_data中保留viewDidLoad个对象。试试这个:

PANewsListModel *info = [PADataSource getNewsList];
_data = [info.news retain];

并确保以dealloc方法发布。