在以前的版本上创建ios7按钮

时间:2013-12-18 08:15:24

标签: ios iphone objective-c ipad uibutton

是否可以在button的先前版本中ios 7创建ios?我希望我的button只显示文字,选择时不要是白色矩形或蓝色。

2 个答案:

答案 0 :(得分:3)

试试这个......

UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];

[btn setTitle:@"text" forState:UIControlStateNormal]

答案 1 :(得分:2)

如果您正在使用“界面”构建器,则只需将按钮拖到视图中,然后在“属性”检查器中选择“自定义”类型,然后在占位符中添加所需的文本。 否则,如果您以编程方式创建按钮,那么

UIButton *buttonName = [UIButton buttonWithType:UIButtonTypeCustom];
[buttonName setTitle:@"Some Text" forState:UIControlStateNormal];