0

我正在开发我的第一个 iOS 项目,应该被认为是 Objective-C 和 xcode 的初学者。

我正在构建一个应用程序,它显示数量可以从 1 到 200 项不等的项目集。我正在从 RSS 提要中检索项目并解析 XML。我已经能够毫无问题地在 UITableView 中显示项目,并且它以我想要的方式工作。

该应用程序适用于 iPhone 和 iPad(在 6.1 上测试),我的目标是在 iPad 上的 UICollectionView 和 iPhone 上的 UITableView 中显示项目。我已经能够在 collectionview 中显示项目,但是当我调用 reloadData 方法时,应用程序崩溃并出现以下错误:

“线程 1:EXC_BAD_ACCESS(代码=1,地址=0,50c1ecd9)”

在我寻找答案时,我读到打开僵尸可以帮助我找到问题,它给了我这个错误:

[CollectionCell release]:消息发送到已释放实例 0xc177470

#地址类别事件类型RefCt时间戳大小负责库负责调用者1507 0x16941940 CollectionCell Release 1 00:21.272.192 0 UIKit - [UICollectionView reloadData] 1508 0x16941940 CollectionCell Release 0 00:21.275.833 0 Foundation - [NSAutoreleasePool drain] 1509 0x1694 -1 00:21.279.332 0 基础 -[NSAutoreleasePool 排水]

CollectionCell 是我的自定义 UICollectionViewCell 类。

我将提供我认为与问题根源最相关的 UITableView 和 UICollectionView 的代码:

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

static NSString *CellIdentifier = @"NewsCell_iPhone";
UITableViewCell *cell = nil;
cell = (NewsCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    NSArray *nib = nil;
    nib = [[NSBundle mainBundle] loadNibNamed:@"NewsCell_iPhone" owner:self options:nil];
    cell = [nib objectAtIndex:0];
} 

UICollectionView:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"CollectionCell";
UICollectionViewCell *cell = (CollectionCell *)[collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];

if (cell == nil) {
    NSLog(@"Test");
    NSArray *nib = nil;
    nib = [[NSBundle mainBundle] loadNibNamed:@"CollectionCell_iPad" owner:self options:nil];
    cell = [nib objectAtIndex:0];
}

新闻单元(UITableViewCell)

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    // Initialization code
}
return self;
}

集合单元(UICollectionViewCell)

- (id)initWithFrame:(CGRect)frame {

self = [super initWithFrame:frame];

if (self) {
    // Initialization code
    NSArray *arrayOfViews = [[NSBundle mainBundle] loadNibNamed:@"CollectionCell" owner:self options:nil];

    if ([arrayOfViews count] < 1) {
        return nil;
    }

    if (![[arrayOfViews objectAtIndex:0] isKindOfClass:[UICollectionViewCell class]]) {
        return nil;
    }

    self = [arrayOfViews objectAtIndex:0];
}
return self;
}

我希望我已经包含了解决这个问题所需的内容,我愿意接受任何改进我的代码的建议。

4

1 回答 1

0

看到您的代码,以及您对 ARC 已关闭的评论,内存泄漏很可能发生,因为您正在为对象分配空间,但从未释放它。

如果您对编程非常陌生,特别是动态内存管理,我建议您打开 ARC,这样您就不必担心释放对象。

另外,请按照您的教程进行操作,如果 ARC 已打开,请将其打开,如果已关闭,请将其关闭。这是因为如果它在教程中打开,它不会实现 dealloc 方法,这服务于释放内存的目的。

于 2013-10-02T07:45:07.507 回答