How to get image from UIImagePickerController and Pass to next VC

后端 未结 6 1996
心在旅途
心在旅途 2021-01-15 22:41

I select a photo from PhotoLibrary and How can I achieve below tasks

In this case, I am using Swift. I need to reconstruct the image in the next VC either thru :

6条回答
  •  耶瑟儿~
    2021-01-15 23:12

    Try this

    dismiss(animated: true, completion: {
            self.performSegue(withIdentifier: "Whatever_segue", sender: nil)
        })
    

提交回复
热议问题