gpt4 book ai didi

ios - 点击 UIButton 以编程方式创建另一个 UIButton

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:43 29 4
gpt4 key购买 nike

我正在尝试以编程方式创建一个 UIButton。我有一个名为“addCash”的按钮(已在界面生成器中创建),点击此按钮后我希望另一个按钮动态出现。当在 viewDidLoad 中完成时,此按钮工作正常,但这不是我想要的,因为在创建此新按钮之前需要点击“addCash”。这是我目前所拥有的...

-(IBAction) addCash{
UIButton *theButton = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
theButton.frame = CGRectMake(80, 50, 150, 40);
[theButton setTitle:@"title" forState:UIControlStateNormal];
[theButton addTarget:self action:@selector(test:) forControlEvents:UIControlEventTouchUpInside];
[theButton setBackgroundImage:[UIImage imageNamed:@"edit.jpg"] forState:UIControlStateNormal];

[self.view addSubview:theButton];
}

最佳答案

如果您只是添加很多按钮,请使用 UITableView with custom cell .如果您只是添加新的按钮来查看,您将遇到性能问题 - 所有按钮将同时加载。 UITableView 可以处理这种情况并卸载未使用的单元格。

关于ios - 点击 UIButton 以编程方式创建另一个 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9898873/

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