我正在以编程方式创建视图,当我添加一个带有标题的按钮时,我看到的只是一些文本和清晰的背景。有没有办法获得一个具有圆角、边框和按下状态的默认外观按钮,而无需手动指定每个属性?
如果是后者,是否有样式指南以便我可以获得默认外观按钮?
我正在以编程方式创建视图,当我添加一个带有标题的按钮时,我看到的只是一些文本和清晰的背景。有没有办法获得一个具有圆角、边框和按下状态的默认外观按钮,而无需手动指定每个属性?
如果是后者,是否有样式指南以便我可以获得默认外观按钮?
试试这个:
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(100, 100, 30, 30);
button.titleLabel.text = @"A Button";
[self.view addSubview: button];
以下是每行的作用:
UIButtonTypeCustom
, UIButtonTypeDetailDisclosure
, UIButtonTypeInfoLight
, UIButtonTypeInfoDark
, UIButtonTypeContactAdd
。该按钮将如下所示:
采用
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];