reduce entropy by removing unnecessary files

This commit is contained in:
2025-07-04 18:24:44 +02:00
parent 95d56d50c3
commit d8e5cb2370
15 changed files with 46 additions and 200 deletions
+6 -11
View File
@@ -1,19 +1,14 @@
//
// ViewController.swift
// ImageViewer
//
// Created by Christine Bieker on 04/07/2025.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
view.backgroundColor = .white
let label = UILabel()
label.text = "Hello, UIKit!"
label.textAlignment = .center
label.frame = CGRect(x: 50, y: 150, width: 300, height: 50)
view.addSubview(label)
}
}