methodSignatureForSelector

methodSignatureForSelector

我收到此警告:

*** NSForwarding: warning: object 0x3560018 of class '_TtCSs23_ContiguousArrayStorage0000000017DB45E4' does not implement methodSignatureForSelector: -- trouble ahead


跟着一个错误

[SwiftObject doesNotRecognizeSelector:]


在以下代码的第2行:

let vcs = [feedTab, channelsTab, signinTab, historyTab, moreTab]
tabBarController.setViewControllers(vcs, animated: true)


其中每个选项卡都是UINavigationController的实例。这只会在我的设备上发生,而不会在模拟器上发生。有任何想法吗?

最佳答案

该错误是由Google Analytics(分析)的动态链接库之一引起的。我已经取消了它们的链接并禁用了GA,但是直到重建之前我进行了一次清洁工作,错误都没有消失。

关于ios - ContiguousArrayStorage不实现methodSignatureForSelector,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25150357/

10-11 00:40