- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个拼贴应用程序,为此我使用DKImagePickerController
一次选择多个图像。 pod
的 Github 链接是 https://github.com/zhangao0086/DKImagePickerController
我正在遵循文档并收到错误-
Use of undeclared type 'DKAssets'
在stackoverflow上,我得到了这个链接 https://stackoverflow.com/questions/35270303/use-of-undeclared-type-dkasset-use-of-unresolved-identifier-dkimagepickercon 对于同样的问题,但这并没有帮助我。
最佳答案
将您的代码替换为:
let pickerController = DKImagePickerController()
pickerController.didSelectAssets = { (assets: [DKAsset]) in
print("didSelectAssets")
print(assets)
}
self.present(pickerController, animated: true, completion: nil)
关于swift - DKImagePickerController 演示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45498432/
我正在开发一个拼贴应用程序,为此我使用DKImagePickerController一次选择多个图像。 pod 的 Github 链接是 https://github.com/zhangao0086/
我想使用“DKImagePickerController”在 iPad 中打开 PhotoGallery,可以吗? 我尝试使用 UIImagePickerController 打开图库,它工作正常,但
我正在尝试从库中选择多张图片,并在 UICollectionView 中查看。它在选取图像时工作正常,但图像没有出现在 UICollectionView 上。我尝试再次选择图像,并查看之前的图像。当前
我想从图库中选择多张图片。为此,我使用 pod 安装了 DKImagePikerController。 在 podfile 中。 pod 'DKImagePickerController' 使用_框架
有人使用以下链接中的 DKImagePickerController 来让您的应用程序支持选择多个图像吗? https://github.com/zhangao0086/DKImagePickerCo
我已经在我的应用程序中实现了 cocoapod DKImagePickerController,并且我想使用内置函数来记住应用程序重新启动时的选择: pickerController.sele
当用户使用 DKImagePickerController github 选择图像时,我想在 ScrollView 上显示多个图像。这是我的代码,但图像没有出现。任何人都可以知道出了什么问题吗?预先感
我是一名优秀的程序员,十分优秀!