我如何使用 PromiseKit/Photos 任何示例?我特别找不到任何照片文档。
我已经实现如下,我能够收到请求
_ = PHPhotoLibrary.requestAuthorization().then(execute: { (status) -> Void in print(status.rawValue) })
任何比上述实现更好的东西都会有所帮助。
我如何使用 PromiseKit/Photos 任何示例?我特别找不到任何照片文档。
我已经实现如下,我能够收到请求
_ = PHPhotoLibrary.requestAuthorization().then(execute: { (status) -> Void in print(status.rawValue) })
任何比上述实现更好的东西都会有所帮助。
你在正确的道路上,你实现的方式是正确的,你也可以检查下面的代码
PHPhotoLibrary.requestAuthorization().then { authorized in
print(authorized) // => true or false
}
PHPhotoLibrary.requestAuthorization().then { authorized -> Void in
guard authorized else { throw MyError.unauthorized }
// …
}.catch { error in
UIAlertView(/*…*/).show()
}
PHPhotoLibrary.requestAuthorization().then { authorized -> Promise in
guard authorized else { throw MyError.unauthorized }
// returning a promise in a `then` handler waits on that
// promise before continuing to the next handler
return CLLocationManager.promise()
// if the above promise fails, execution jumps to the catch below
}.then { location -> Void in
// if anything throws in this handler execution also jumps to the `catch`
}.catch { error in
switch error {
case MyError.unauthorized:
//…
case is CLError:
//…
}
}