如何从 PluginKit 加载数据库应用程序
How to load database Application from PluginKit
我有自定义键盘应用程序并使用 Realm 数据库。但是pluginKit和application都没有使用同一个数据库。
申请:
/Users/baotuan/Library/Developer/CoreSimulator/Devices/A0C0F2B4-8A82-4CC3-9925-210FEB9A5590/data/Containers/Data/Application/F50606AD-37A2-48E1-A1F9-5B14522184C0/Documents/default.realm
PluginKit
/Users/baotuan/Library/Developer/CoreSimulator/Devices/A0C0F2B4-8A82-4CC3-9925-210FEB9A5590/data/Containers/Data/PluginKitPlugin/1DACDBF8-AC2C-4204-A672-407A4060E803/Documents/default.realm
那么我如何为我的应用程序使用相同的数据库
要在 iOS 上的应用程序和扩展程序之间共享数据,您需要使用 App Groups. App Groups provide a shared directory that can be accessed by any process that is a member of the group. Andrea Mazzini has written a blog post about sharing data between a WatchKit extension and an app,其中介绍了如何设置应用程序组。
我有自定义键盘应用程序并使用 Realm 数据库。但是pluginKit和application都没有使用同一个数据库。
申请:
/Users/baotuan/Library/Developer/CoreSimulator/Devices/A0C0F2B4-8A82-4CC3-9925-210FEB9A5590/data/Containers/Data/Application/F50606AD-37A2-48E1-A1F9-5B14522184C0/Documents/default.realm
PluginKit
/Users/baotuan/Library/Developer/CoreSimulator/Devices/A0C0F2B4-8A82-4CC3-9925-210FEB9A5590/data/Containers/Data/PluginKitPlugin/1DACDBF8-AC2C-4204-A672-407A4060E803/Documents/default.realm
那么我如何为我的应用程序使用相同的数据库
要在 iOS 上的应用程序和扩展程序之间共享数据,您需要使用 App Groups. App Groups provide a shared directory that can be accessed by any process that is a member of the group. Andrea Mazzini has written a blog post about sharing data between a WatchKit extension and an app,其中介绍了如何设置应用程序组。