This is a sample code to create and paste a custom button class that extends UIButton.
By separating the look and feel of the ViewController into separate files, you can make the ViewController look neat.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
let viewWidth = self.view.frame.width | |
let viewHeight = self.view.frame.height | |
let custumBtn = CustomButton() | |
custumBtn.frame = CGRect(x: viewWidth * 0.3, y: viewHeight * 0.4, width: viewWidth * 0.4, height: viewHeight * 0.2) | |
custumBtn.addTarget(self, action: #selector(customBtnClicked(sender:)), for:.touchUpInside) | |
self.view.addSubview(custumBtn) | |
} | |
@objc func customBtnClicked(sender:UIButton) { | |
print("ボタンが押されたよ") | |
} | |
} |