当我运行应用程序而没有使用Xcode调试器连接设备时,我的应用程序崩溃了.因此,当我使用设备并检查我在那里得到这种报告.
Exception Type: 00000020
Exception Codes: 0x000000008badf00d
Exception Note: SIMULATED (this is NOT a crash)
Highlighted by Thread: 0
<Error>: Application Specific Information:
com.healthandsocialecare.touchemar failed to scene-update after 10.00s
Run Code Online (Sandbox Code Playgroud)
好的和有效的答案将欣赏.提前致谢.
我在编译源中添加了标志,以便在我的应用程序中实现janrain集成。
当我试图在那个时候运行应用程序或归档构建时,我遇到了这个错误。
我已经添加了该文件以更正构建路径,并且该文件已包含在项目中。
在这里,我附上了该错误的快照:
谁能帮我解决这个问题?提前致谢.. :)
我想在视图控制器中为 tableviewcell 加载我的自定义 xib。我无法在 tableview 中加载我的 xib
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:[CustomCell reuseIdentifier]];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = _customCell;
_customCell = nil;
}
cell.topLabel.text = @"I am on top";
cell.bottomLabel.text = @"and I'm on the bottom";
return cell;
}
Run Code Online (Sandbox Code Playgroud)
我无法将我的自定义单元格从 xib 加载到 tableview 中。请帮我。