如何从NSObject类以编程方式添加UIButton

时间:2015-08-05 10:27:14

标签: ios swift uibutton

我正在尝试在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)
}

1 个答案:

答案 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)
}