UIKit is the iOS framework that implements the standard UI components for iOS applications.
Building an app with UIKit is trivially easy. In all cases you'll use Xcode, Apple's IDE for developing for iOS and macOS.
In Swift, you just put the statement
import UIKit
At the top of a each source f...