在UITableView下面有风俗UITableViewCells,我可以使用自定义此行调整分隔罚款UITableViewCell:
self.separatorInset = UIEdgeInsetsMake(0, kDefaultSeparatorLeftInset, 0, 0);
Run Code Online (Sandbox Code Playgroud)
但是,该部分底部的单元格具有一个默认分隔符,该分隔符将覆盖UIEdgeInsets我设置的自定义.
我希望所有分隔符的宽度相同,有没有办法在不重新绘制分隔符的情况下执行此操作?

我遇到了一个奇怪的问题,FirebaseApp.configure()调用导致我的应用程序立即崩溃我的单元测试目标.它对我的标准版本运行良好.
任何想法为什么会这样?
这是堆栈跟踪:
2018-04-18 11:42:57.252405+0100 Avalanche[14289:124354] 4.8.1 - [Firebase/Analytics][I-ACS023007] Firebase Analytics v.40007000 started
2018-04-18 11:42:57.252454+0100 Avalanche[14289:124361] 4.8.1 - [Firebase/Core][I-COR000005] No app has been configured yet.
2018-04-18 11:42:57.252712+0100 Avalanche[14289:124354] 4.8.1 - [Firebase/Analytics][I-ACS023008] To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see http://googl/RfcP7r)
2018-04-18 11:42:57.371588+0100 Avalanche[14289:124278] [Crashlytics] Version 3.9.3 (128)
2018-04-18 11:42:57.390507+0100 Avalanche[14289:124278] *** Terminating app due to uncaught exception 'FABException', reason: '[Fabric] Value of Info.plist key "Fabric" must be a NSDictionary.'
*** First throw call stack:
( …Run Code Online (Sandbox Code Playgroud) 在父ViewController中使用以下代码,我想在第一个上面显示第二个视图,然后关闭第一个:
// Animates the next questionViewController using the first questionViewController
[previousView presentViewController:nextQuestionViewController animated:YES completion:nil];
// Dismiss the first questionViewController
[previousView dismissViewControllerAnimated:NO completion:nil];
Run Code Online (Sandbox Code Playgroud)
运行时,会显示第二个视图,但第一个视图不会被忽略.
ios ×2
crashlytics ×1
firebase ×1
iphone ×1
objective-c ×1
swift ×1
uitableview ×1
xcode9.3 ×1