func aa(){
let btn:UIButton = UIButton.init(type: UIButton.ButtonType.custom);//新建btn
btn.frame = CGRect.init(x: 10, y: 10, width: 100, height: 100);//frame位置和大小
btn.backgroundColor = UIColor.red;//背景色
btn.imageView?.image = UIImage.init(named: "aaa")//設置圖片
btn.layer.cornerRadius = 10
btn.layer.masksToBounds = true //設置圓角
btn.setTitle("點擊", for: UIControl.State.normal)//設置標題
btn.titleLabel?.font = UIFont.systemFont(ofSize: 17)//設置字體大小
self.view.addSubview(btn);
//沒有有參數
// btn.addTarget(self, action: #selector(btnClick), for: UIControl.Event.touchUpInside);
btn.addTarget(self, action:#selector(tapped(_:)), for:UIControl.Event.touchUpInside)
}
//沒有參數
// @objc func btnClick(){
// print("----------")
// }
@objc func tapped(_ btn:UIButton){
print("----------")
}