可以通过以下方式添加按钮:
UIButton *myButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
myButton.frame = CGRectMake(100, 100, 160, 50);
[myButton setTitle:@"click me" forState:UIControlStateNormal];
[self.view addSubview:myButton];
但是我们可以采用以下initWithFrame
方法吗:
UIButton *myButton2 = [[UIButton alloc] initWithFrame:CGRectMake(100, 300, 160, 50)];
//myButton2.buttonType = UIButtonTypeRoundedRect;
myButton2.titleLabel.text = @"click me";
[self.view addSubview:myButton2];
但是上面的第 2 行被注释掉了,因为它会导致“只读”属性出现错误,并且注释掉了该行,仍然没有显示任何按钮...如果使用initWithFrame
开头,可以添加 UIButton 吗?
(更新:我设置了黄色背景来查看视图的区域,发现按钮2的标签文本实际上显示为白色的“点击我”......但触摸它没有视觉效果......所以我想知道如何更改代码示例 2 以使其工作...)