我正在开发一个拼贴应用程序,因为我使用DKImagePickerController
一次选择多个图像。 pod
的Github链接为https://github.com/zhangao0086/DKImagePickerController
我正在关注文档并收到错误 -
在stackoverflow上的使用未声明的类型' DKAssets'
我得到了这个链接Use of undeclared type 'DKAsset', Use of unresolved identifier 'DKImagePickerController'?同样的问题,但这对我没有帮助。 如果有人可以帮助或分享相同的例子,那将是很棒的。谢谢你的建议。
答案 0 :(得分:0)
用以下代码替换您的代码:
let pickerController = DKImagePickerController()
pickerController.didSelectAssets = { (assets: [DKAsset]) in
print("didSelectAssets")
print(assets)
}
self.present(pickerController, animated: true, completion: nil)