Swift version: 5.6
The UIImagePickerController
class is a super-simple way to select and import user photos into your app. As a bonus, it also automatically handles requesting user permission to read the photo library, so all you need to do is be ready to respond when the user selects a photo.
First, make sure your view controller conforms to the UINavigationControllerDelegate
and UIImagePickerControllerDelegate
protocols. Next, fill it in with methods to trigger selecting a picture, to handle cancelling, and to handle picture selection.
Here’s a working example to get you started:
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
var newImage: UIImage
if let possibleImage = info[.editedImage] as? UIImage {
newImage = possibleImage
} else if let possibleImage = info[.originalImage] as? UIImage {
newImage = possibleImage
} else {
return
}
// do something interesting here!
print(newImage.size)
dismiss(animated: true)
}
To use that code in your own project, replace the call to print()
with something useful – you have the image, now what?
There’s one more thing before you’re done, which is to add a description of why you want access – what do you intend to do with your user’s photos? To set this, look for the file Info.plist in the project navigator and select it. This opens a new editor for modifying property list values (“plists”) – app configuration settings.
In the Key column, hover your mouse pointer over any item and you’ll see a + button appear; please click that to insert a new row. A huge list of options will appear – please scroll down and select “Privacy - Photo Library Usage Description”. In the “Value” box for your row, enter “We need to import photos of people”. This is the message Apple will show to the user when photo access is requested.
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS 2.0 – see Hacking with Swift tutorial 10
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.