Using Realm inside framework

主宰稳场 提交于 2020-01-17 07:09:02

问题


I can not use Realm within my framework as a framework because apple rejects nested frameworks. However maybe there is no problem in using Realm as a pod depedence within my framework. Or is there a problem? How does objective C be a single namespace I will not have collisions?

In my framework I want to capture GPS coordinates. What is the benefit of using Realm for this versus file system?

Thanks


回答1:


You're correct that the iOS App Store doesn't allow nested dynamic frameworks. The suggested solution is to place frameworks at the same directory level in your app bundle.

The benefits of using Realm are well documented on the official website: https://realm.io



来源:https://stackoverflow.com/questions/43477988/using-realm-inside-framework

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!