· 7 years ago · Nov 27, 2018, 02:18 PM
1let configuration = UnsplashPhotoPickerConfiguration(
2 accessKey: "<UNSPLASH_API_ACCESS_KEY>",
3 secretKey: "<UNSPLASH_API_SECRET_KEY>"
4)
5
6let photoPicker = UnsplashPhotoPicker(configuration: configuration)
7photoPicker.photoPickerDelegate = self
8
9present(photoPicker, animated: true, completion: nil)