iOS UIAppearance使用详解总结
今天上项目一时,老师讲了导航栏背景设置有很多种设置方法,其中有一种就是用appearance设置的,但是我对这个appearance一点都不了解,所以今天就看了一篇关于UIAppearance的使用详解博客.
1.UIAppearance的功能
通过UIAppearance设置一些UI的全局效果,这样就可以很方便的实现UI的自定义效果又能最简单的实现统一界面风格.
注意:使用appearance设置UI效果最好采用全局的设置,在所有界面初始化前开始设置,否则可能失效
2.UIAppearance提供的两个方法
a.+(id)appearance
这个方法是统一全部改,比如设置UINavigationBar的tintColor,可以这样写:[[UINavigationBarappearance] setTintColor:myColor];
b.+(id)appearanceWhenContainedIn:(Class<>)ContainerClass,…
这个方法可设置某个类的改变,例如:设置UIBarButtonItem在UINavigationBar,UIPopoverController,UITabBar中的效果.
3.UIAppearance的UI外观修改
a.修改导航栏背景
UINavigationBar * appearance =
[UINavigationBarappearance];
UIImage*navBackgroundImg =[UIImageimageNamed:@"navBg.png”];
[appearance
setBackgroundImage:navBackgroundImg forBarMetrics:UIBarMetricsDefault];
b.修改标签栏(UITabBar)
UITabBar*appearance = [UITabBarappearance];
//设置背景图片
[appearance
setBackgroundImage:[UIImageimageNamed:@"tabbar_bg.png"]];
//门置选择item的背景图片
UIImage* selectionIndicatorImage =[[UIImageimageNamed:@"tabbar_slider"]resizableImageWithCapInsets:UIEdgeInsetsMake(4,0,0,0)] ;
[appearancesetSelectionIndicatorImage:selectionIndicatorImage];
c.修改分段控件(UISegmentControl)
UISegmentedControl *appearance =
[UISegmentedControlappearance];
//Segmenteg正常背景
[appearance setBackgroundImage:[UIImageimageNamed:@"Segmente.png"] forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
//Segmente选中背景
[appearance setBackgroundImage:[UIImageimageNamed:@"Segmente_a.png"] forState:UIControlStateSelected barMetrics:UIBarMetricsDefault];
d.修改导航栏上的UIBarButton
注意:UIBarbutton有leftBarButton,rightBarButton和backBarButton,其中backBarButton由于带有箭头,需要单独设置。
//修改导航条上的UIBarButtonItem
UIBarButtonItem *appearance = [UIBarButtonItemappearanceWhenContainedIn:[UINavigationBarclass],nil];
e.修改工具栏(UIToolBar)
UIToolbar*appearance = [UIToolbarappearance];
//样式和背景二选一即可,看需求了
//样式(黑色半透明,不透明等)设置
[appearancesetBarStyle:UIBarStyleBlackTranslucent];
//背景设置
[appearance
setBackgroundImage:[UIImageimageNamed:@"toolbarBg.png"] forToolbarPosition:UIToolbarPositionAny
barMetrics:UIBarMetricsDefault];
网友评论