gpt4 book ai didi

ios - UIButton 未显示在 UIViewController 中

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:22:19 24 4
gpt4 key购买 nike

我已经这样设置了我的按钮:

CGRect button1Frame = CGRectMake(200, 200, 100, 100);
self.button1 = [[UIButton alloc] initWithFrame:button1Frame];
[self.button1 addTarget:self action:@selector(goToController1:)
forControlEvents:UIControlEventTouchDown];
self.button1.userInteractionEnabled = YES;
self.button1.opaque = YES;
self.button1.backgroundColor = [UIColor redColor];
[self.button1 setTitle:@"B1" forState:UIControlStateNormal];
[self.view addSubview:self.button1];

与我的发件人:

- (void) goToController1:(id)sender {
NSLog(@"Pressed");
}

并且我的 View Controller 已正确初始化。什么会导致我的按钮不显示?我已经检查以确保一切都被正确调用。

最佳答案

你可以试试这个:

button = [UIButton buttonWithType: UIButtonTypeSystem];

然后像这样设置框架:

button.frame = CGRectMake(0,0,20,20);

UIButton buttonWithType: 方法一次性解决了我的问题。不确定在这种情况下是否会有所作为。只是一些尝试。

关于ios - UIButton 未显示在 UIViewController 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21321317/

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