Untitled
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. setupUI() } private func setupUI() { // You can customize your UI setup here view.backgroundColor = .white } }
Leave a Comment