UnsplashPhotoPicker is an iOS UI component that allows you to quickly search the Unsplash library for free high-quality photos with just a few lines of code.
Android photo picker here.
UnsplashPhotoPicker is a view controller. You present it to offer your users to select one or multiple photos from Unsplash. Once they have selected photos, the view controller returns UnsplashPhoto
objects that you can use in your app.
- iOS 11.0+
- Xcode 10.2+
- Swift 5.0+
- Unsplash API Access Key and Secret Key
To integrate UnsplashPhotoPicker into your Xcode project using Carthage, specify it in your Cartfile
:
github "unsplash/unsplash-photopicker-ios" ~> 1.1.1
Run carthage update
to build the framework and drag the built UnsplashPhotoPicker.framework
into your Xcode project.
To integrate UnsplashPhotoPicker into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
target '<Your Target Name>' do
pod 'UnsplashPhotoPicker', '~> 1.1.1'
end
Then run pod install
.
If you prefer not to use any of the aforementioned dependency managers, you can integrate UnsplashPhotoPicker into your project manually as a git submodule by running the following command in the project's folder:
$ git submodule add https://github.com/unsplash/unsplash-photopicker-ios.git
Drag the UnsplashPhotoPicker.xcodeproj
file into your Xcode project, then drag the UnsplashPhotoPicker.framework
to your target's "Embedded Binaries".
❗️Before you get started, you need to register as a developer on our Developer portal. Once registered, create a new app to get an Access Key and a Secret Key.
The UnsplashPhotoPicker
is configured with an instance of UnsplashPhotoPickerConfiguration
:
UnsplashPhotoPickerConfiguration(accessKey: String,
secretKey: String,
query: String,
allowsMultipleSelection: Bool,
memoryCapacity: Int,
diskCapacity: Int)
Property | Type | Optional/Required | Default |
---|---|---|---|
accessKey |
String | Required | N/A |
secretKey |
String | Required | N/A |
query |
String | Optional | nil |
allowsMultipleSelection |
Bool | Optional | false |
memoryCapacity |
Int | Optional | 50 |
diskCapacity |
Int | Optional | 100 |
UnsplashPhotoPicker
is a subclass of UINavigationController
. We recommend that you present it modally or as a popover on iPad. Before presenting it, you need to implement the UnsplashPhotoPickerDelegate
protocol, and use the photoPickerDelegate
property to get the results.
protocol UnsplashPhotoPickerDelegate: class {
func unsplashPhotoPicker(_ photoPicker: UnsplashPhotoPicker, didSelectPhotos photos: [UnsplashPhoto])
func unsplashPhotoPickerDidCancel(_ photoPicker: UnsplashPhotoPicker)
}
UnsplashPhotoPicker
returns an array of UnsplashPhoto
objects. See UnsplashPhoto.swift for more details.
MIT License
Copyright (c) 2018-2019 Unsplash Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.