以下是我的代码的一部分:
LocalPosts *cell = (LocalPosts *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier1];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"LocalPosts" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
我有一个名为LocalPosts的.xib - 我的代码在线程1失败 - 断点1.1
我已经启用了所有例外并启用了Zombies但是我没有在控制台上看到任何打印 - 只是(lldb)。
我在设备上的ios 8.0上运行它,我正在使用最新的xcode。
我甚至不知道在哪里看 - 你能帮帮我吗?
由于