设置控件所有的布局都是一样的

来源:互联网 发布:apache怎么读 编辑:程序博客网 时间:2024/04/27 04:00
//设置所有button字体颜色默认为黑色
    [[
UIButtonappearance]setTitleColor:[UIColorblackColor]forState:UIControlStateNormal];
   
//设置tableView的背景色为透明色
    [[
UITableViewappearance]setBackgroundColor:[UIColorclearColor]];
   
//设置cell的颜色为半透明色
    [[
UITableViewCellappearance]setBackgroundColor:[UIColorcolorWithRed:1green:1blue:1alpha:0.5]];
0 0
原创粉丝点击