DKImagePickerController

时间:2017-08-04 04:46:53

标签: swift swift3

我正在开发一个拼贴应用程序,因为我使用DKImagePickerController一次选择多个图像。 pod的Github链接为https://github.com/zhangao0086/DKImagePickerController

我正在关注文档并收到错误 -

  

使用未声明的类型' DKAssets'

在stackoverflow上的

我得到了这个链接Use of undeclared type 'DKAsset', Use of unresolved identifier 'DKImagePickerController'?同样的问题,但这对我没有帮助。 如果有人可以帮助或分享相同的例子,那将是很棒的。谢谢你的建议。

1 个答案:

答案 0 :(得分:0)

用以下代码替换您的代码:

 let pickerController = DKImagePickerController()

    pickerController.didSelectAssets = { (assets: [DKAsset]) in
      print("didSelectAssets")
      print(assets)
    }

    self.present(pickerController, animated: true, completion: nil)