gpt4 book ai didi

ios - 以编程方式将 UIButton 添加到具有 Storyboard的自定义 ViewController

转载 作者:行者123 更新时间:2023-11-29 02:51:34 24 4
gpt4 key购买 nike

我已经按照 AppCoda's Create UIPageViewController Using Storyboard tutorial 成功实现了走查屏幕.在示例的最后,在代码中创建了一个 UIPageControl,现在我正尝试以相同的方式以编程方式添加一个 UIButton。

如果通过 Storyboard 添加,按钮会出现,但当(单独)添加到我的 viewDidLoad 时,这些都对我不起作用:

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
// [self.view addSubview:button];
// [self.view bringSubviewToFront:button];
// [self.view insertSubview:button atIndex:0];
// [self.view insertSubview:button atIndex:[self.view subviews].count + 1];
// [self.view insertSubview:button aboveSubview:self.view];
// [self initButton:button];

一定有一些相对简单的东西是我遗漏的。我应该坚持使用 Android 吗?

最佳答案

只需取消注释 [self.view addSubview:button]; 行,它应该可以工作。如果它不起作用,我相信您在 self.view 之上添加了一些其他 View ,将鼠标悬停在您的按钮上。

关于ios - 以编程方式将 UIButton 添加到具有 Storyboard的自定义 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24434588/

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