Добавить изображения из ImagePicker в CollectionView - PullRequest
0 голосов
/ 26 июня 2018

Я пытаюсь добавить изображения из моего средства выбора изображений в представление коллекции, а затем имею возможность добавлять и удалять изображения по своему желанию.

Я добавил функциональность для добавления изображений, но не знаю, как удалить опцию добавления изображений при достижении предела.

Также удаляем изображения из представления массива / коллекции.

var arrayOfImages = [UIImage]()

let uploadImagesCell = UITableViewCell()

var collectionView: UICollectionView!
var cellImage = UIImageView()

@IBOutlet weak var tableView: UITableView!
var imagePicker = ImagePickerController()
override func viewDidLoad() {
    super.viewDidLoad()

    // Do any additional setup after loading the view.

    let layout = UICollectionViewFlowLayout()
    layout.sectionInset = UIEdgeInsets(top: 20, left: 10, bottom: 10, right: 10)
    layout.itemSize = CGSize(width: self.view.frame.size.width / 3 - 20, height: 111)
    layout.scrollDirection = .horizontal
    collectionView = UICollectionView(frame:  CGRect(x: 0, y: 0, width: self.view.frame.width - 10, height: 150), collectionViewLayout: layout)
    collectionView.showsHorizontalScrollIndicator = false
    collectionView.showsVerticalScrollIndicator = false
    collectionView.delegate   = self
    collectionView.dataSource = self
    collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "Cell")
    collectionView.backgroundColor = UIColor.white


    self.uploadImagesCell.addSubview(collectionView)

    arrayOfImages.append(UIImage.init(named: "c")!)
}

func numberOfSections(in collectionView: UICollectionView) -> Int {

    return 1
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return arrayOfImages.count
}
var path: Int!

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath as IndexPath)
    self.cellImage = UIImageView(frame: CGRect(x: 0, y: 0, width: cell.frame.size.width, height: cell.frame.size.height))
    cell.backgroundColor = UIColor.blue

    cellImage.image = arrayOfImages[indexPath.row]

    cell.addSubview(cellImage)


    return cell
}
func numberOfSections(in tableView: UITableView) -> Int {

    return 1
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 1
}



func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {

    print("test")


        var configuration = Configuration()
            configuration.doneButtonTitle = "Finish"
            configuration.noImagesTitle = "Sorry! There are no images here!"
            configuration.recordLocation = false

            imagePicker = ImagePickerController(configuration: configuration)
            imagePicker.imageLimit = 1
            imagePicker.delegate = self

            present(imagePicker, animated: true, completion: nil)
}

func wrapperDidPress(_ imagePicker: ImagePickerController, images: [UIImage]) {
    imagePicker.dismiss(animated: true, completion: nil)
}
public var imageAssets: [UIImage] {
    return AssetManager.resolveAssets(imagePicker.stack.assets)
}
func cancelButtonDidPress(_ imagePicker: ImagePickerController) {
    print("cancel")
}

func doneButtonDidPress(_ imagePicker: ImagePickerController, images: [UIImage]) {


    let images = imageAssets[0]


    self.arrayOfImages.insert(images, at: 0)


    self.collectionView.reloadData()

    imagePicker.dismiss(animated: true, completion: nil)
}

1 Ответ

0 голосов
/ 26 июня 2018
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
if imageAssets.count==photoLimit 
    { //display alert  you have reached the limit}
    else{print("test")
        var configuration = Configuration()
            configuration.doneButtonTitle = "Finish"
            configuration.noImagesTitle = "Sorry! There are no images here!"
            configuration.recordLocation = false

            imagePicker = ImagePickerController(configuration: configuration)
            imagePicker.imageLimit = 1
            imagePicker.delegate = self
            present(imagePicker, animated: true, completion: nil)
}
}
...