#swift で、UIButtonを象るタグたち。
####まずアウトレット接続する方法と、シート内で作る方法の二通りがあり、
let button1 = UIButton()
button1.frame = CGRect(x: 20, y: self.view.frame.size.height/2-22, width: self.view.frame.size.width-40, height: 44)
button1.setTitle("My Button", for: .normal)
button1.setTitleColor(.brown, for: .normal)
button1.backgroundColor = .black
button1.layer.cornerRadius = 15
button1.layer.borderWidth = 3
button1.layer.borderColor = .purple
self.view.addSubView(button1)
最下段のサブビューのくだりは、小のシート上で簡潔するボタンメイク、アウトレット接続の場合は、いらない。
また、シート全体で使う場合は、イニシャライズ(初期化)を、
import UIKit
class ViewController: UIViewController {
var button1 = UIButton()
override viewDidLoad() {
}
}
とViewDidLoad() のそとで定義することが必要。