gpt4 book ai didi

ios - 滚动经过第一行时 UICollectionView 崩溃

转载 作者:行者123 更新时间:2023-11-28 21:48:55 24 4
gpt4 key购买 nike

我有一个对象数组,用于填充自定义 UICollectionViewCell 的标签文本。当我启动应用程序时,单元格显示正常,但当我滚动到第一行单元格时,应用程序崩溃了。我启用了僵尸程序,崩溃前调试的最后一行是:

*** -[CFString retain]: message sent to deallocated instance 0x174233be0

这是返回每个单元格的代码:

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier = @"BadgeCell";
BadgeCell *cell = (BadgeCell *)[badgeCollectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];
Badge *cellData = dataArray[indexPath.row];
[cell.titleLabel setText:cellData.badgeName];
return cell;
}

编辑:BadgeCell 中的代码:

@synthesize titleLabel;

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self)
{
NSArray *arrayOfViews = [[NSBundle mainBundle] loadNibNamed:@"BadgeCell" 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;
}

最佳答案

我怀疑您的模型没有正确保留此属性 (NSString*)badgeName,是否将保留策略设置为强(或复制,这可能更合适)?

关于ios - 滚动经过第一行时 UICollectionView 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29054550/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com