44 lines
618 B
Swift
44 lines
618 B
Swift
//
|
|
// LUXTopbtnVC.swift
|
|
// wallpaper_project
|
|
//
|
|
// Created by 忆海16 on 2024/8/5.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class LUXTopbtnVC: UIViewController {
|
|
@IBOutlet weak var One: UIButton!
|
|
|
|
@IBOutlet weak var two: UIButton!
|
|
|
|
@IBOutlet weak var three: UIButton!
|
|
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
|
|
}
|
|
|
|
@IBAction func touchOne(_ sender: UIButton) {
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@IBAction func touchTwo(_ sender: UIButton) {
|
|
|
|
|
|
}
|
|
|
|
|
|
@IBAction func touchThree(_ sender: UIButton) {
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|