- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
目前我正在为一个已经存在的应用程序进行更新(迁移到 Swift 3)。我有 Today-、Search-、Message- 和 Watch Extensions 的目标。每个目标都需要访问我的应用程序的核心数据模型,因此我创建了一个 AppGroup 并为每个目标启用了 Capability。尽管我已经将 NSPersistentStoreCoordinator 子类化,所以所有内容都存储在共享文件夹中:
import CoreData
class PFPersistentContainer: NSPersistentContainer {
override open class func defaultDirectoryURL() -> URL {
if let url = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "add-groupname-here") {
return url
}
// Fallback
return super.defaultDirectoryURL()
}
}
这个类文件,以及我的 Core-Data-Model 和下面的类都是所有提到的目标的目标成员。实体的 Codegen 设置为 Class Definition
。到目前为止,我使用的是核心数据栈的默认实现:
class DataManager {
/**
* Singleton Implementation
*/
internal static let sharedInstance:DataManager = {
let instance = DataManager()
return instance
}()
// MARK: - Core Data stack
lazy var persistentContainer: PFPersistentContainer = {
let container = PFPersistentContainer(name: "Data")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
// MARK: - Core Data Saving support
func saveContext () {
let context = persistentContainer.viewContext
if context.hasChanges {
do {
try context.save()
} catch {
let nserror = error as NSError
fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
}
}
}
}
现在奇怪的部分是:从 Today- 和 Message-Extension 访问这些数据似乎工作得很好(我假设 Search-Extension 也在工作,但就开发人员而言,我无法测试它).尝试使用来自 Watch App 扩展的相同请求获取它会导致一个空数组。这是我的获取代码:
internal func getLimitedPOIsWithCalculatedDistance(andCurrentLocation currentLocation:CLLocation) -> Array<POI> {
var poiArray:Array< POI > = []
guard let context = self.backgroundContext else { return [] }
do {
// Initialize Fetch Request
let request:NSFetchRequest<NSFetchRequestResult> = NSFetchRequest(entityName: "POI")
// Create Entity Description
let entityDescription = NSEntityDescription.entity(forEntityName: "POI", in: context)
// Configure Fetch Request
request.entity = entityDescription
// Configure Predicate
let predicate = NSPredicate(format: "(disabled == NO) AND (locationDistanceCalculated <= \(SETTINGS_MAXIMUM_FETCH_DISTANCE))")
request.predicate = predicate
if let result = try context.fetch(request) as? Array<POI> {
for poi in result {
let poiLocation = CLLocation(latitude: poi.locationLatitude, longitude: poi.locationLongitude)
let distance = currentLocation.distance(from: poiLocation)
poi.locationDistanceTransient = Double(distance)
}
poiArray = result.filter({ (poi) -> Bool in
return poi.locationDistanceTransient > 0.0
})
poiArray.sort { (first, second) -> Bool in
return first.locationDistanceTransient < second.locationDistanceTransient
}
}
} catch {
print("Error in WatchDataInterface.getLimitedPOIsWithCalculatedDistance(): \(error.localizedDescription)")
}
return poiArray
}
A bit more context for better understanding: the POI Entitie contains latitude and longitude of a location. When starting the app, I'm pre-calculating the distance to each point in the database from the current user's position. When the Today-Extension tries to get the nearest x (in my case 8) POIs to the current users position, fetching all 15k POIs and calculating their distance is to much memory wise. So I had to pre-calculate the distance (stored in
locationDistanceCalculated
), then fetch in a given radius (the staticSETTINGS_MAXIMUM_FETCH_DISTANCE
) and calculate a precise distance during the fetch process (stored into a transient propertylocationDistanceTransient
).
在 Watch App 的 ExtensionDelegate
类中,实现了一个 CLLocationManagerDelegate
并在更新用户位置时调用代码:
extension ExtensionDelegate: CLLocationManagerDelegate {
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
OperationQueue.main.addOperation{
if let watchDataManager = self.watchDataManager {
// getNearestPOIs() calls the getLimitedPOIsWithCalculatedDistance() function and returns only a numberOfPOIs
self.nearbyPOIs = watchDataManager.getNearestPOIs(numberOfPOIs: 4)
}
}
}
}
它在模拟器和设备上进行了测试。 context.fetch
总是返回一个空数组(是的,核心数据包含值,是的,我已经在没有谓词的情况下对其进行了测试)。我是否遗漏了 Core Data 中的任何新内容,我还没有考虑过,或者它们在 WatchOS3 中的任何限制为什么这不起作用?有人知道吗?感谢您的帮助。
更新:当使用 Watch Framework 目标访问核心数据时,如描述的那样 in this project ,提取一直为空。也许这可能是正确的道路,但 Watch Framework 是错误的选择。会让你了解最新情况。
更新 2: 我已经检查了 App Programming Guide对于 WatchOS 和 transferFile:metadata:
function在 API 引用中,但它似乎不是将这些大量数据发送到 AppleWatch 的合适方法。我只是不能依赖于这样的情况,即用户检查应用程序的频率高于他离开 SETTINGS_MAXIMUM_FETCH_DISTANCE
半径的次数,对于 POI 密度高的位置,此数据甚至更广泛.
更新 3:我重新实现了附近的 POI 功能,以便仅在给定的半径范围内获取。如果这能为您解决问题,请查看此公共(public) Gist .
最佳答案
从 Watch OS3 开始,您无法使用 App Group 技巧访问 CoreData
库(因为 watch 应该在没有手机的情况下工作。
所以你必须使用WatchConnectivity
来获取你的数据
关于ios - Swift3:通过 AppGroups 从 Watch Extension 访问核心数据时的空获取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42272054/
我最近将我的开发者账户从账户 A 更改为账户 B。我已成功转移我的应用程序。 随着应用程序的转移,我的应用程序组没有被迁移。因此,我从账户 A 中删除了该应用程序组,并使用完全相同的标识符在账户 B
我在我的应用程序中使用 Realm 作为数据库,并且我有共享扩展来支持媒体从其他应用程序共享。因为我需要从共享扩展访问我的数据库,所以我将 Realm 文件从 App 的文档目录移动到 Appgrou
我有一个音频文件可以自定义通知声音,但是 当文件位于应用程序容器目录的/ Library / Sounds目录中时,它将起作用。 当文件位于应用程序的共享组容器目录之一的/ Library / Sou
我有一个文件存在于 AppGroup 共享容器中,我想知道是否可以将该文件从共享容器复制到应用程序包中。 我获取的文件路径如下: let filePath = NSFileManager.defaul
我想将图像文件保存到组容器中,以便与 iMessage 扩展一起使用,作为由 Unity 生成的贴纸,所以我写了一个 ios 插件来获取容器路径并将数据保存到相应的路径,我已经成功获取路径 /priv
我已阅读并遵循了一些说明和视频,试图让我的 iPhone 和 iwatch 应用程序使用相同的用户默认存储。我创建了一个应用程序组并使用了这样的应用程序组名称 preferences = UserDe
我知道如何使用 XCode 6 的“设备”窗口下载和替换特定 iOS 应用程序的文件系统容器。 但是,对于我正在开发的应用程序,我需要能够下载和替换共享的 AppGroup 容器以进行调试。这将使我能
目前我正在为一个已经存在的应用程序进行更新(迁移到 Swift 3)。我有 Today-、Search-、Message- 和 Watch Extensions 的目标。每个目标都需要访问我的应用程序
我尝试在 iOS 11 中使用 fileProvider 并在 file:///private/var/mobile/Containers/Shared/AppGroup/xxxx/xxx.db 处拥
我是一名优秀的程序员,十分优秀!