Untitled

mail@pastecode.io avatar
unknown
plain_text
23 days ago
325 B
2
Indexable
Never
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