我正在尝试在NSObject
类中创建一个UIButton。我收到错误“使用未解析的标识符视图。我认为它需要UIViewController
才能生效。
是否有一个解决方法,以便我在多个视图控制器上创建多个按钮。我错过了什么?
func createButton () {
let button = UIButton();
button.setTitle("Add", forState: .Normal)
button.setTitleColor(UIColor.blueColor(), forState: .Normal)
button.frame = CGRectMake(15, -50, 200, 100)
view.addSubview(button)
}
答案 0 :(得分:1)
使用参数参数声明方法定义,在其中添加按钮:
func createButton (view:UIView) {
let button = UIButton();
button.setTitle("Add", forState: .Normal)
button.setTitleColor(UIColor.blueColor(), forState: .Normal)
button.frame = CGRectMake(15, -50, 200, 100)
view.addSubview(button)
}