gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 01:46:44 25 4
gpt4 key购买 nike

我正在尝试在 NSObject 类中创建一个 UIButton。我收到错误消息“使用未解析的标识符 View 。我认为它需要有 UIViewController 才能工作。

是否有解决方法,以便我在多个 View Controller 上创建多个按钮。我错过了什么?

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

最佳答案

使用要在其中添加按钮的参数参数声明方法定义:

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

关于ios - 如何从 NSObject 类以编程方式添加 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31829845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com