答案 0 :(得分:1)
您可以通过编程方式创建按钮,然后将其添加为contentView的子视图。
let button = UIButton()
button.frame = CGRectMake(contentView.center.x-20.0, contentView.center.y-20.0, 40.0, 40.0)
button.addTarget(self, action: "handleTap", forControlEvents: UIControlEvents.TouchUpInside)
button.setTitle("Title", forState: UIControlState.Normal)
contentView.addSubview(button)
在您可以处理点按
的操作上func handleTap() {
//Do whatever you want
print("Button tapped")
}
我在scrollView
中使用scrollView和UIView测试了它