I have noticed that it is possible (in Xcode 12, at least) to do:
import UIKit.ViewController
class ViewController: UIViewController {}
Up until now I have always done import UIKit
.
Does someone know which benefits one has from importing only the class? Does the app build/compile faster?
Thanks