Skip to content

Instantly share code, notes, and snippets.

View sunnyleeyun's full-sized avatar
🎯
Focusing

Sunny sunnyleeyun

🎯
Focusing
View GitHub Profile
// cookPic
extension SignUpViewController: UIImagePickerControllerDelegate, UINavigationControllerDelegate {
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
var selectedImageFromPicker: UIImage?
// 取得從 UIImagePickerController 選擇的檔案
if let pickedImage = info[UIImagePickerControllerOriginalImage] as? UIImage {