美文网首页
Terminating app due to uncaught

Terminating app due to uncaught

作者: MNCode | 来源:发表于2020-05-18 12:15 被阅读0次

    ```

    Terminating app due to uncaught exception 'RLMException', reason: 'Primary key property 'name' does not exist on object 'RealmSwiftClassPermission''

    ```

    iOS 13和Xcode 11存在问题,可能会导致此问题。String以某种方式忽略了具有默认值集的Realm类的所有String属性。您可以通过更新到最新版本(当前为3.20.0),然后在Xcode:Product- > Clean Build Folder上解决此问题

    如果您使用的是可可豆荚:

    **打开项目的Podfile,并将RealmSwift行替换为:**

    > pod'RealmSwift','~> 4.4.1'

    **然后,打开项目文件夹中的终端,然后:**

    > pod repoupdate 

    > podinstall

    相关文章

      网友评论

          本文标题:Terminating app due to uncaught

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