[UILabel appearance]
首先要说的额就是这个方法
没看到不明白 看到的一眼就懂
设置全局 可以设置 label button textfield 等等等等
只要你想得到
在Appdelete中设置即可
下面附上一些常用方法
//设置全局label默认背景颜色
[[UILabel appearance] setBackgroundColor:[UIColor redColor]];
//设置全局label默认字体颜色
[[UILabel appearance] setTextColor:[UIColor redColor]];
//设置全局Button默认字体颜色
[[UIButton appearance] setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
//设置全局cell默认背景颜色
[[UITableViewCell appearance] setBackgroundColor:kClearColor];
//设置全局cell默认字体颜色
[[UITableViewCell appearance] setTintColor:kNavBarThemeColor];
其他的也就这样了 自己看着办