gpt4 book ai didi

ios - 如何以编程方式创建基本的 UIButton?

转载 作者:IT老高 更新时间:2023-10-28 12:12:12 25 4
gpt4 key购买 nike

如何以编程方式创建基本 UIButton?例如在我的 View Controller 中,在执行 viewDidLoad 方法时,会动态创建三个 UIButton 并设置其布局或属性。

最佳答案

这是一个:

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];

关于ios - 如何以编程方式创建基本的 UIButton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1378765/

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