Create a new target and add the appropriate OS specific UI logic for each OS 3. Add GiltKit to each target and use it to display a list of upcoming sales.
= default) public func listSalesForStore(store: GiltKit.Store, kind: GiltKit.Sale.Kind, completion: (([GiltKit.Sale]) -> ())) } public struct Sale { public enum Kind : String { case Upcoming case Active } public let name: String public let description: String public let imageURL: NSURL public let size: UInt public let store: GiltKit.Store } public enum Store : String { case Men case Women case Kids case Home }