我正在开发一个应用程序并应用全局格式,为此我在 appDelegate.m 文件中添加了下面的下一行
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
[self customizeAppearance];
return YES;
}
-(void)customizeAppearance{
int iOSVersion = [[[UIDevice currentDevice]systemVersion] intValue];
if (iOSVersion >= 7) {
//Customizing UIButton
[[UIButton appearance]setBackgroundColor:(UIColorFromRGB(toolbarTintColor))];
[[UIButton appearance]setTitleColor:(UIColorFromRGB(toolbarTextColor)) forState:UIControlStateNormal];
}
if (iOSVersion < 7) {
//Customizing UIButton
[[UIButton appearance]setBackgroundImage:[UIImage imageNamed:@"Button.png"] forState:UIControlStateNormal];
}
}
我根据更改 UIbutton 样式的 iOS 版本做了这两种样式,但我希望它只应用于 UIButtons,而不是 UIBarButtonItems 这可能吗?
更进一步,我想将这种格式全局应用于 UIView 元素内的 UIButtons(不在 UITableViewCells 左右)可以这样做吗?
提前感谢您的支持