This is an iOS app to allows users to search for an image on Flickr, generate it's average colour, and set that colour to the view's background image. The goal of the project was to attempt to simply recreate the iTunes album art view and learn a little bit about image processing.
Open with Xcode and create an APIKey.swift file with a static API_KEY class member, which contains your personal Flickr API key.
import Foundation
class APIKey {
static let API_KEY = "#####" // <-- Your API_KEY Here
}