UIButton 字体颜色 粗体

来源:互联网 发布:centos安装pdo 编辑:程序博客网 时间:2024/06/10 01:52

UIButton * btn=[[UIButton alloc] initWithFrame:CGRectMake(5, 5,50,30)];

[btn setTitle:@"xxx" forState:UIControlStateNormal];btn.backgroundColor=YYColor(247, 247, 247);[btn setTitleColor:YYColor(234, 167, 39)  forState:UIControlStateNormal];btn.font=[UIFont systemFontOfSize:15];

//粗体
[btn setFont :[ UIFont fontWithName : @”Helvetica-Bold” size : 15 ]];
[self.view addSubview:btn];

//边框线
btn.layer.borderWidth = 1;
btn.layer.borderColor = [[UIColor grayColor] CGColor];

0 0
原创粉丝点击