GBA002/Delta/Settings/AboutVC.swift
2024-05-30 10:09:40 +08:00

35 lines
783 B
Swift

//
// 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.
}
*/
}