问题
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