大家。

我已经开始使用Watch Kit应用程序了。使用WatchKit 1,可以轻松访问共享文件夹中的coredata数据库。但是,当我更新到xcode 7,watch kit 2.0和swift 2.0时,AppleWatch和iPhone似乎具有不同的应用程序组共享文件夹地址。和下面的代码

NSURL *storeURL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:BMCoreDataConstants.groupIdentifier];
storeURL = [storeURL URLByAppendingPathComponent:BMCoreDataConstants.sqliteStoreNameWithExtension];

在iPhone和AppleWatch上返回不同的URL。

请告知您是否知道从父应用程序的核心数据中获取数据的最佳方法是什么?

最佳答案

我发现在这里可以完美地解释WWDC视频:

https://developer.apple.com/videos/wwdc/2015/?id=713

如果您有相同的问题,请随时查看。

10-05 20:03