美文网首页
Execution was interrupted,reason

Execution was interrupted,reason

作者: coding_Liu | 来源:发表于2019-11-16 15:57 被阅读0次

    执行被中断,原因:试图取消对无效ObjC对象的引用或发送

    这个意思是一个对象发送到一个无法识别的方法中

    这个就要考虑方法是不是编译器无法识别

    我遇到这个问题场景:在主工程里添加sdk sdk中使用MJExtension中的mj_objectArrayWithKeyValuesArray 方法进行模型转化(这个代码在我的sdk中,并且我sdk工程对应的小demo没问题,但和主工程集成是崩溃到这)

    解决方法: 在主工程中也引入MJExtension 这个第三方,让代码调用我的库时 能在主工程中知道这个方法是有效的,就不会Execution was interrupted,reason:Attempted to dereference an invalid ObjC Object or send it 了!

    相关文章

      网友评论

          本文标题:Execution was interrupted,reason

          本文链接:https://www.haomeiwen.com/subject/thmyictx.html