当我在IOS10.3.3上启动我的应用程序时,我遇到了一个非常棘手的问题。的确,我在splashviewController中遇到了这个错误:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
// [[EMAnalyticsManager sharedInstance]sendScreenViewWithName:SplashScreen];
}
我收到此崩溃消息:
[__NSCFString nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:]: unrecognized selector sent to instance 0x165e3630
2018-09-06 16:57:31.456059+0100 **********[2461:1072580] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:]: unrecognized selector sent to instance 0x165e3630'
我做了很多研究,以了解IOS11中未发生此崩溃的原因。
有什么帮助吗?
最佳答案
加载第一个 View Controller 时,可能会导致某些约束。请检查您的约束,您也可以删除约束,然后验证它是否有效。
关于objective-c - 无法识别的选择器已发送到实例IOS 10,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52208370/