// // AboutVC.swift // Delta // // Created by 忆海16 on 2024/5/9. // Copyright © 2024 Riley Testut. All rights reserved. // import UIKit class AboutVC: UIViewController { @IBOutlet weak var logoimageV: UIImageView! override func viewDidLoad() { super.viewDidLoad() logoimageV.layer.cornerRadius = 10 } @IBAction func done(_ sender: Any) { dismiss(animated: true) } /* // MARK: - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation override func prepare(for segue: UIStoryboardSegue, sender: Any?) { // Get the new view controller using segue.destination. // Pass the selected object to the new view controller. } */ }