gpt4 book ai didi

Iphone 应用程序在 iOS 4.3 中因 EXC_BAD_ACCESS 错误而崩溃,但在以前的版本中运行良好

转载 作者:行者123 更新时间:2023-12-01 17:45:54 25 4
gpt4 key购买 nike

我创建了一个经过苹果批准的应用程序,目前可以在应用商店购买。但在 4.3 更新后,它在滚动 UITableView 时出现 EXC_BAD_ACCESS 错误时崩溃。 NSZombieEnabled = YES,将使应用程序再次运行,但这当然不是解决方案;)在 Main 类中报告了以下行中的错误:

int retVal = UIApplicationMain(argc, argv, nil, nil);

堆栈跟踪也不能帮助我:
> #0  0x00faf09f in objc_msgSend ()
> #1 0x04c7b9e0 in ?? ()
> #2 0x00d6004c in CFRelease ()
> #3 0x00e42369 in -[__NSArrayM removeObjectAtIndex:] ()
> #4 0x00e3dcfc in -[NSMutableArray removeObjectsInRange:] ()
> #5 0x003507a5 in -[UITableView(_UITableViewPrivate) _updateVisibleCellsNow:] ()
> #6 0x0034890c in -[UITableView layoutSubviews] ()
> #7 0x01d80a5a in -[CALayer layoutSublayers] ()
> #8 0x01d82ddc in CALayerLayoutIfNeeded ()
> #9 0x01d280b4 in CA::Context::commit_transaction ()
> #10 0x01d29294 in CA::Transaction::commit ()
> #11 0x01d2946d in CA::Transaction::observer_callback ()
> #12 0x00e2a89b in __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__
> ()
> #13 0x00dbf6e7 in __CFRunLoopDoObservers ()
> #14 0x00d87857 in CFRunLoopRunSpecific ()
> #15 0x00d87761 in CFRunLoopRunInMode ()
> #16 0x017371c4 in GSEventRunModal ()
> #17 0x01737289 in GSEventRun ()
> #18 0x002dec93 in UIApplicationMain ()
> #19 0x000026d4 in main (argc=1, argv=0xbffff068) at
> /Users/geoffrey/Documents/iPhone
> projecten/Xcode Projecten/HU
> Rooster/main.m:14

有人可以帮我解决这个问题吗?
我现在正试图让它工作 2 天 :(
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";

CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = customCell;
self.customCell = nil;
}
int num = indexPath.row;

if (indexPath.section != 0) {
for (int i=1; i <= indexPath.section; i++) {
num = (num + [[sectorSize objectAtIndex:(i-1)] intValue]);
}
}
// Configure the cell...
cell.tijdLabel.text = [NSString stringWithFormat:@"%@ - %@", [tijdBeginList objectAtIndex:num], [tijdEindList objectAtIndex:num]];
cell.lesVormLabel.text = [lesVormList objectAtIndex:num];
cell.docentLabel.text = [docentList objectAtIndex:num];
cell.lokaalLabel.text = [lokaalList objectAtIndex:num];
cell.opmerkingLabel.text = [opmerkingList objectAtIndex:num];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}

最佳答案

检查自定义单元实现的 dealloc 方法并确保 [super dealloc] 是最后一条指令。我有一个类似的问题,结果我在它发布一些 View 标签和其他项目之前调用了 [super dealloc]。

关于Iphone 应用程序在 iOS 4.3 中因 EXC_BAD_ACCESS 错误而崩溃,但在以前的版本中运行良好,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5299962/

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