我想从图库中选择多个图片。所以为此我安装了DKImagePikerController使用pod。
在podfile中。
pod'DKImagePickerController' use_frameworks!
之后我在应用程序中关注了实现库的演示示例。 但我得到了以下错误。
1.使用未声明的类型'DKAsset'。 2.使用未解析的标识符'DKImagePickerController'?
我正在关注这个lib和代码。 https://github.com/zhangao0086/DKImagePickerController
答案 0 :(得分:2)
首先,您需要导入框架。为此,
导入DKImagePickerController
之后在Navigator>选择pods> Build Settings> Architectures> Build Active Active Architecture - >对于所有窗格设置为“否”。(选择“目标”下列出的所有窗格并为“仅构建活动架构”设置“否”)
清理并构建您的项目,您就完成了。