前提・実現したいこと
DKImagePickerControllerを使って、簡単なアプリを作成中です。
添付した画像の枚数に応じて.maxSelectableCount
を減らしていく処理を実現させたいと思っています。
例)
添付枚数が0の場合は5枚まで選択できる
添付枚数が1の場合は4枚まで選択できる
添付枚数が2の場合は3枚まで選択できる
・・・
##発生している問題・エラー
} else if assets == 1 {
の箇所で
Cannot convert value of type '[DKAsset]?' to expected argument type 'Int'
##ソースコード
Swift
1import UIKit 2import DKImagePickerController 3 4class PictureViewController: UIViewController, UICollectionViewDelegate, UICollectionViewDataSource { 5 6 var assets:[DKAsset]? 7 8 9 @IBOutlet weak var collectionView: UICollectionView! 10 11 12 override func viewDidLoad() { 13 super.viewDidLoad() 14 15 } 16 @IBAction func tapButton(_ sender: Any) { 17 let pickerController = DKImagePickerController() 18 if assets == nil { 19 pickerController.maxSelectableCount = 5 20 } else if assets == 1 { 21 pickerController.maxSelectableCount = 4 22 } 23 pickerController.didSelectAssets = { [unowned self] (assets: [DKAsset]) in 24 self.assets = assets 25 self.collectionView.reloadData() 26 27 } 28 present(pickerController, animated: true, completion: nil) 29 } 30 31 32 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 33 return self.assets?.count ?? 0 34 } 35 36 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 37 let asset = self.assets![indexPath.row] 38 var cell: UICollectionViewCell? 39 var imageView: UIImageView? 40 41 if asset.type == .photo { 42 cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CellImage", for: indexPath) 43 imageView = cell?.contentView.viewWithTag(1) as? UIImageView 44 } 45 if let imageView = imageView { 46 47 asset.fetchFullScreenImage(completeBlock: { image, info in 48 imageView.image = image 49 50 }) 51 } 52 return cell! 53 } 54 55} 56 57
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/10 10:12