Chapter 17. Photo Library and Camera
The stored photos and videos accessed by the user through the Photos app constitute the device’s photo library:
-
The UIImagePickerController class can be used to give the user an interface for exploring the photo library and choosing a photo.
-
The Photos framework, also known as PhotoKit, lets you access the photo library and its contents programmatically — including the ability to modify a photo’s image. You’ll need to
import Photos
.
The user’s device may include one or more cameras, and your app might want to let the user take (capture) a photo or video:
-
The UIImagePickerController class can be used to give the user an interface similar to the Camera app, letting the user capture photos and videos.
-
At a deeper level, the AV Foundation framework (Chapter 15) provides direct control over the camera hardware. You’ll need to
import AVFoundation
.
The two subjects are related, especially because having allowed the user to capture an image, you will typically store it in the photo library, just as the Camera app does. So this chapter treats them together.
Constants such as kUTTypeImage
, referred to in this chapter, are provided by the Mobile Core Services framework; you’ll need to import MobileCoreServices
.
Browsing with UIImagePickerController
UIImagePickerController is a view controller providing an interface in which the user can choose an item from the photo library, similar to the Photos app. You are expected to treat the UIImagePickerController ...
Get Programming iOS 13 now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.