```
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
网友评论