【发布时间】:2011-07-13 01:13:57
【问题描述】:
我们的应用程序偶尔会收到 BUS_ADRALN。查看崩溃日志,它显示行 [[NSBundle mainBundle] loadNibNamed:@"MyCell" owner:self options:nil]。我知道 BUS_ADRALN 是无效地址,但我没有发现问题。它大部分时间都有效。
static NSString *buddyListCellId = @"MyCell";
cell = [tableView dequeueReusableCellWithIdentifier:buddyListCellId];
if (cell == nil) {
// the following line is what the crash is pointing to
[[NSBundle mainBundle] loadNibNamed:@"MyCell" owner:self options:nil];
cell = buddyListCell;
self.buddyListCell = nil;
}
【问题讨论】:
标签: iphone objective-c