Closed. This question needs to be more focused。它目前不接受答案。
想改进这个问题吗?更新问题,使其只关注一个问题editing this post
去年关门了。
我需要在图片中添加一个通用或通用按钮。怎么做?
swift - 如何在Swift 3的TableViewController中添加一个常规按钮-LMLPHP

最佳答案

你可以试试这个。

let bottomButton = UIButton(frame: CGRect(x: 100, y: 300, width: 100, height: 30))
bottomButton.setTitle("Enter Text Here", for: .normal)
bottomButton.backgroundColor = UIColor.orange
view.addSubview(bottomButton)

可以根据视图控制器设置x、y位置。另外,根据tableViewController的宽度和高度设置宽度和高度。

07-24 14:20