如何使用 PromiseKit/照片?
Posted
技术标签:
【中文标题】如何使用 PromiseKit/照片?【英文标题】:How to use PromiseKit/Photos? 【发布时间】:2017-01-17 05:43:51 【问题描述】:如何使用 PromiseKit/Photos 任何示例?我找不到任何有关照片的文档。
我已经实现如下,我能够接收请求
_ = phphotoLibrary.requestAuthorization().then(execute: (status) -> Void in print(status.rawValue) )
任何比上述实现更好的方法都会有所帮助。
【问题讨论】:
【参考方案1】:你在正确的道路上,你实现的方式是正确的,你也可以检查下面的代码
http://promisekit.org/docs/
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:
//…
【讨论】:
以上是关于如何使用 PromiseKit/照片?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Combine + Swift 复制 PromiseKit 风格的链式异步流
如何在 Swift 中使用 PromiseKit 和 Firebase?
如何使用 PromiseKit 在 Swift 3 中手动触发 Promise