This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// cookPic | |
extension SignUpViewController: UIImagePickerControllerDelegate, UINavigationControllerDelegate { | |
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) { | |
var selectedImageFromPicker: UIImage? | |
// 取得從 UIImagePickerController 選擇的檔案 | |
if let pickedImage = info[UIImagePickerControllerOriginalImage] as? UIImage { | |
NewerOlder