iOS Как обновить расположение ресурсов в расширении для редактирования фотографий?
Я работаю с расширением редактирования фотографий и столкнулся с проблемой, как я могу обновить местоположение фотографии с помощью Photos Framework? У нас есть метод finishContentEditingWithCompletionHandler:
func finishContentEditingWithCompletionHandler(completionHandler: ((PHContentEditingOutput!) -> Void)!) {
// Update UI to reflect that editing has finished and output is being rendered.
// Render and provide output on a background queue.
dispatch_async(dispatch_get_global_queue(CLong(DISPATCH_QUEUE_PRIORITY_DEFAULT), 0)) {
// Create editing output from the editing input.
let output = PHContentEditingOutput(contentEditingInput: self.input)
// Provide new adjustments and render output to given location.
// output.adjustmentData = <#new adjustment data#>
// let renderedJPEGData = <#output JPEG#>
// renderedJPEGData.writeToURL(output.renderedContentURL, atomically: true)
// Call completion handler to commit edit to Photos.
completionHandler?(output)
// Clean up temporary files, etc.
}
}
И у нас есть PHContentEditingOutput, есть ли способы изменить местоположение? Как это сделать? Заранее спасибо.