UIImagePicker Controller & Delegate L3.4.1

Initializing a UIImagePickerController @IBAction func pickAnImage(_ sender:Any) { let pickerController = UIImagePickerController() present(pickerController, animated: true, completion: nil) } UIImagePickerControllerDelegate When the Image Picker Controller is presented one »

StackViews L2.5.1

Overview Stack views are a UIElement introduced in iOS 9, which as the name suggests make it easy to stack views. You can have any UIView »

Delegation and Recording L2.4.2

AVFoundation and AudioEngine The AVAudioEngine is part of the AVFoundation framework. Implementing AVFoundation and AVAudioRecorder with code breakdown import AVFoundation // 1 class ViewController: UIViewController { // MARK: Properties »