错误原因在于 AppDelegate 中 didFinishLaunchingWithOptions 结束前 未定义 rootViewController,Xcode7规定必须要有rootViewController.定义一个空UIViewController即可,添加如下代码解决:UIViewController *emptyView = [[ UIViewController alloc ]initNibName:nil bundle:nil ];self. window .rootView…
崩溃原因 crash: Assertion failure in -[UIApplication _runWithMainScene:transitionContext:completion:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-  ( *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', `…
原因: 新的SDK不允许在设置rootViewController之前做过于复杂的操作,导致在didFinishLaunchingWithOptions 结束后还没有设置rootViewController Xcode7需要所有UIWindow必须立即先设置一个rootViewController 解决办法:先设置个rootVIewController 之后重新赋值 UIWindow *window = [[UIWindowalloc] initWithFrame:[UIScreenmainSc…
最近在项目中遇到了 Assertion failure in -[UISectionRowData refreshWithSection:tableView:tableViewRowData:] 这个崩溃报错,并且真机调试 卡在了 mj_reloadData 那里,是苹果那些人跟 mj教授过不去么,是可忍孰不可忍,投诉,投诉,投诉! 在系统11上运行没问题, 系统10.3.3-iphone6-xcode9 报错. 解决办法 1 注释掉下面代码, 使用代理实现 tableView.sectionF…
今天遇到了Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]这个错误,一直也没有百度,不料想却弄了一个下午,唉,早知道就百度一下了,呵呵. 遇到这个问题的原因是tableView的这个方法返回了空的值,所以出错了 -(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)index…
Assertion failure in -[UITableView _classicHeightForRowAtIndexPath:], /SourceCache/UIKit_Sim/UIKit-3318/UITableView.m:10772 原因是返回的高度不合法,要么是负数,要么是nan,检查返回正确即可…
AFNetWorking[:] *** Assertion failure -- :::] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: URLString' 解决 NSString *url = @"http://c.m.163.com/nc/article/headline/T1348647…
报错提示: *** Assertion failure in -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:viewCategory:], /SourceCache/UIKit_Sim/UIKit-3318.16.14/UICollectionView.m:3307 *** Terminating app due to uncaught exception 'NSInternalInconsis…
  Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.30.14/UITableView.m:7962 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:…
参考资料: http://www.cnblogs.com/tiancun/p/3756581.html http://www.tc5u.com/mfc/2120698.htm http://forums.codeguru.com/showthread.php?379745-setwindowtext-in-cdialog-ctor-causes-assertion-to-fail 出错代码: CInfoDlg dlg; dlg.GetDlgItem(IDC_STATIC)->SetWindowT…