지난 주 Apple 엔지니어에게 내 NSMetadataQuery
의 문제에 대한 이메일을 보냈습니다.NSMetadataQuery의 업데이트 알림이 (실행 루프?)와 일치합니다.
안녕,
나는 문서 기반 응용 프로그램 또는 iOS와 (새 위치로 문서를 이동) 이름 변경에 대한 내 방법을 쓰고 있어요이 실행 NSMetadataQuery과 충돌 것 : 여기
이메일입니다 .이동 메서드가 호출 된 후 처음으로 이동 된 항목의 이전 URL이 있고 다음에 새 URL이있는 쿼리가 업데이트됩니다. 그러나 내 업데이트 방법 (아래) 때문에 업데이트 이후 URL이 제거 된 경우 내 모델은 삭제 된 URL을 제거하고 그 반대의 경우에도 아직 존재하지 않는 URL을 찾습니다.
내 문제는 NSMetadataQuery의 업데이트 방법이 불충분하고 항목을 삭제하기 전에 해당 항목의 URL을 확인하지 않는다고 생각합니다. 내가 뭔가를 놓친다는 것을 제안 할 것이다) 또는 나의 이름 바꾸기 방법은해야하는 무언가를하고 있지 않다.
이름 바꾸기 방법을 시작할 때 업데이트를 사용하지 않도록 설정하고 모든 완료 블록이 완료되면 다시 사용 설정을 시도했지만 아무런 차이가 없습니다.
내 NSMetadataQuery의 업데이트 방법 :
func metadataQueryDidUpdate(notification: NSNotification) {
ubiquitousItemsQuery?.disableUpdates()
var ubiquitousItemURLs = [NSURL]()
if ubiquitousItemsQuery != nil && UbiquityManager.sharedInstance.ubiquityIsAvailable {
for var i = 0; i < ubiquitousItemsQuery?.resultCount; i++ {
if let result = ubiquitousItemsQuery?.resultAtIndex(i) as? NSMetadataItem {
if let itemURLValue = result.valueForAttribute(NSMetadataItemURLKey) as? NSURL {
ubiquitousItemURLs.append(itemURLValue)
}
}
}
// Remove deleted items
//
for (index, fileRepresentation) in enumerate(fileRepresentations) {
if fileRepresentation.fileURL != nil && !contains(ubiquitousItemURLs, fileRepresentation.fileURL!) {
removeFileRepresentations([fileRepresentation], fromDisk: false)
}
}
// Load documents
//
for (index, fileURL) in enumerate(ubiquitousItemURLs) {
loadDocumentAtFileURL(fileURL, completionHandler: nil)
}
ubiquitousItemsQuery?.enableUpdates()
}
}
그리고 내 이름 변경 방법 :
func renameFileRepresentation(fileRepresentation: FileRepresentation, toNewNameWithoutExtension newName: String) {
if fileRepresentation.name == newName || fileRepresentation.fileURL == nil || newName.isEmpty {
return
}
let newNameWithExtension = newName.stringByAppendingPathExtension(NotableDocumentExtension)!
// Update file representation
//
fileRepresentation.nameWithExtension = newNameWithExtension
if let indexPath = self.indexPathForFileRepresentation(fileRepresentation) {
self.reloadFileRepresentationsAtIndexPaths([indexPath])
}
UbiquityManager.automaticDocumentsDirectoryURLWithCompletionHandler { (documentsDirectoryURL) -> Void in
let sourceURL = fileRepresentation.fileURL!
let destinationURL = documentsDirectoryURL.URLByAppendingPathComponent(newNameWithExtension)
// Update file representation
//
fileRepresentation.fileURL = destinationURL
if let indexPath = self.indexPathForFileRepresentation(fileRepresentation) {
self.reloadFileRepresentationsAtIndexPaths([indexPath])
}
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), {() -> Void in
let coordinator = NSFileCoordinator(filePresenter: nil)
var coordinatorError: NSError?
coordinator.coordinateWritingItemAtURL(sourceURL, options: .ForMoving, writingItemAtURL: destinationURL, options: .ForReplacing, error: &coordinatorError, byAccessor: { (newSourceURL, newDestinationURL) -> Void in
var moveError: NSError?
let moveSuccess = NSFileManager().moveItemAtURL(newSourceURL, toURL: newDestinationURL, error: &moveError)
dispatch_async(dispatch_get_main_queue(), {() -> Void in
assert(moveError == nil || moveSuccess, "Error renaming (moving) document from \(newSourceURL) to \(newDestinationURL).\nSuccess? \(moveSuccess).\nError message: \(moveError).")
if let query = self.ubiquitousItemsQuery {
query.enableUpdates()
}
if moveError != nil || moveSuccess {
// TODO: Implement resetting file rep
}
})
})
})
}
}
내가 거의 즉시 응답을했지만, 그 이후 아무런 응답이 없었다입니다.
다음은 응답에게 나를에 disableUpdates()와 enableUpdates의 사용량을() 밖으로 점프 큰 일의
하나입니다. NSMetadataQuery는 실행 루프와 동일한 순서로 둘 다 실행하지만 NSMetadataQuery는 결과를 비동기 적으로 전달합니다. 이 코드는 업데이트 알림 내에서 실행되므로 쿼리와 동 기적으로 실행됩니다. 따라서 쿼리의 관점에서 알림을 게시하여 업데이트를 제공하기 시작합니다. 알림을 게시하는 것은 동기식 프로세스이므로 알림을 게시하는 동안 업데이트가 비활성화되고 다시 활성화됩니다. 따라서 알림을 게시하는 쿼리가 완료 될 때까지 결과를 제공하기 시작한 상태와 완전히 똑같은 상태가됩니다. 그것은 당신이 원하는 행동이 아닌 것처럼 들립니다. 여기
내가 NSMetadataQuery이 업데이트가 비활성화 및 활성화되면, 그 (아마도 많은) 캐시 결과를 통해 반복되는 반면에 결과를 추가 캐시의 일종이 있다고 가정이했다
도움이 필요한 곳이다 각각 업데이트 알림을 통해 전송됩니다.
어쨌든 iOS에서 실행 루프를 살펴 봤지만 직접해볼 수는 있지만 회신에 도움이되는 방법, 즉 실제로 문제를 해결하는 방법을 이해하지 못합니다. 심지어 문제를 일으킨다.
누구든지 좋은 아이디어가 있다면 나는 당신의 도움을 바랍니다!
감사합니다.
start metadataQueryDidUpdate:
end metadataQueryDidUpdate:
start metadataQueryDidUpdate:
end metadataQueryDidUpdate:
start renameFileRepresentation:toNewNameWithoutExtension
start metadataQueryDidUpdate:
end metadataQueryDidUpdate:
end renameFileRepresentation:toNewNameWithoutExtension
start metadataQueryDidUpdate:
end metadataQueryDidUpdate:
start metadataQueryDidUpdate:
end metadataQueryDidUpdate:
start metadataQueryDidUpdate:
end metadataQueryDidUpdate: