iosuiappearance使用详解.docx

上传人:b****5 文档编号:7148820 上传时间:2023-01-21 格式:DOCX 页数:4 大小:33.73KB
下载 相关 举报
iosuiappearance使用详解.docx_第1页
第1页 / 共4页
iosuiappearance使用详解.docx_第2页
第2页 / 共4页
iosuiappearance使用详解.docx_第3页
第3页 / 共4页
iosuiappearance使用详解.docx_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
下载资源
资源描述

iosuiappearance使用详解.docx

《iosuiappearance使用详解.docx》由会员分享,可在线阅读,更多相关《iosuiappearance使用详解.docx(4页珍藏版)》请在冰豆网上搜索。

iosuiappearance使用详解.docx

iosuiappearance使用详解

+(id)appearance

这个方法是统一全部改,比如你设置UINavBar的tintColor,你可以这样写:

[[UINavigationBarappearance]setTintColor:

myColor];+(id)appearanceWhenContainedIn:

(Class<>)ContainerClass,...

这个方法可设置某个类的改变:

例如:

设置UIBarButtonItem

在UINavigationBar、UIPopoverController、UITabbar中的效果。

就可以这样写

[[UIBarButtonItemappearanceWhenContainedIn:

[UINavigationBarclass],[UIPopoverControllerclass],[UITabbarclass]nil]setTintColor:

myPopoverNavBarColor];请注意*使用

appearance设置UI效果最好采用全局的设置,在所有界面初

1.修改导航栏背景

代码如下:

UINavigationBar*appearance=[UINavigationBarappearance];

UIImage*navBackgroundImg=[UIImage

imageNamed:

@"navBg.png”];

[appearancesetBackgroundImage:

navBackgroundImgforBarMetrics:

UIBarMetricsDefault];2.标签栏(UITabbar)代码如下:

UITabBar*appearance=[UITabBarappearance];

//设置背景图片

[appearancesetBackgroundImage:

[UIImageimageNamed:

@"tabbar_bg.png"]];

//门置选择item的背景图片

UIImage*selectionIndicatorImage=[[UIImageimageNamed:

@"tabbar_slider"]resizableImageWithCapInsets:

U

IEdgeInsetsMake(4,0,0,0)];

[appearance

setSelectionIndicatorImage:

selectionIndicatorImage];3.分段控件(UISegmentControl)代码如下:

appearance];

//Segmenteg正常背景

[appearancesetBackgroundImage:

[UIImageimageNamed:

@"Segmente.png"]

forState:

UIControlStateNormal

barMetrics:

UIBarMetricsDefault];

//Segmente选中背景

[appearancesetBackgroundImage:

[UIImageimageNamed:

@"Segmente_a.png"]

forState:

UIControlStateSelected

barMetrics:

UIBarMetricsDefault];

//Segmente左右都未选中时的分割线

//BarMetrics表示navigationbar的状态,UIBarMetricsDefault

表示portrait状态(44pixelheight),UIBarMetricsLandscapePhone表示landscape状态(32pixelheight)

[appearancesetDividerImage:

[UIImageimageNamed:

@"Segmente_line.png"]

forLeftSegmentState:

UIControlStateNormalrightSegmentState:

UIControlStateNormalbarMetrics:

UIBarMetricsDefault];

[appearancesetDividerImage:

[UIImageimageNamed:

@"Segmente_line.png"]

forLeftSegmentState:

UIControlStateSelected

rightSegmentState:

UIControlStateNormalbarMetrics:

UIBarMetricsDefault];

[appearancesetDividerImage:

[UIImageimageNamed:

@"Segmente_line.png"]

forLeftSegmentState:

UIControlStateNormal

rightSegmentState:

UIControlStateSelectedbarMetrics:

UIBarMetricsDefault];

//字体

NSDictionary*textAttributes1=@{UITextAttributeFont:

[UIFontsystemFontOfSize:

18],

UITextAttributeTextColor:

[UIColorblueColor],

UITextAttributeTextShadowColor:

[UIColorwhiteColor],

UITextAttributeTextShadowOffset:

[NSValuevalueWithCGSize:

CGSizeMake(1,1)]};

forState:

1];

NSDictionary*textAttributes2=@{UITextAttributeFont:

[UIFontsystemFontOfSize:

18],

UITextAttributeTextColor:

[UIColorwhiteColor],

UITextAttributeTextShadowColor:

[UIColorblackColor],

UITextAttributeTextShadowOffset:

[NSValuevalueWithCGSize:

CGSizeMake(1,1)]};

[appearancesetTitleTextAttributes:

textAttributes2

forState:

0];4.UIBarbutton

注意:

UIBarbutton有leftBarButton,rightBarButton和

独设置。

barButton背景设置是ios6.0及以后的,而backbutton是ios5.0

及以后的,这里要注意!

代码如下:

//修改导航条上的UIBarButtonItem

UIBarButtonItem*appearance=[UIBarButtonItemappearanceWhenContainedIn:

[UINavigationBarclass],nil];

//设置导航栏的字体包括backBarButton和leftBarButton,

rightBarButton的字体

NSDictionary*textAttributes=@{UITextAttributeFont:

[UIFontsystemFontOfSize:

18],

UITextAttributeTextColor:

[UIColorblueColor],

UITextAttributeTextShadowColor:

[UIColorwhiteColor],

UITextAttributeTextShadowOffset:

[NSValuevalueWithCGSize:

CGSizeMake(1,1)]};

[appearancesetTitleTextAttributes:

textAttributes

forState:

1];//forState为0时为下正常状态,为1时为点击状态。

//修改leftBarButton,rightBarButton背景效果

[appearancesetBackgroundImage:

[UIImageimageNamed:

@"navBarButton.png"]

forState:

UIControlStateNormal

style:

UIBarButtonItemStyleBordered

barMetrics:

UIBarMetricsDefault];

[appearancesetBackgroundImage:

[UIImageimageNamed:

@"navBarButton_a.png"]

forState:

UIControlStateHighlighted

style:

UIBarButtonItemStyleBordered

barMetrics:

UIBarMetricsDefault];

//backBarButton需要单独设置背景效果。

只能在ios6.0以后才能用

[appearancesetBackButtonBackgroundImage:

[UIImageimageNamed:

@"nav_bg.png"]forState:

0

barMetrics:

UIBarMetricsDefault];

[appearancesetBackButtonBackgroundImage:

[UIImageimageNamed:

@"work.png"]forState:

1

barMetrics:

UIBarMetricsDefault];

[appearance

-1)

forBarMetrics:

UIBarMetricsDefault];5.工具栏

UIToolbar)UIToolbar*appearance=[UIToolbarappearance];

//样式和背景二选一即可,看需求了

//样式(黑色半透明,不透明等)设置

[appearancesetBarStyle:

UIBarStyleBlackTranslucent];

//背景设置

[appearancesetBackgroundImage:

[UIImageimageNamed:

@"toolbarBg.png"]forToolbarPosition:

UIToolbarPositionAny

barMetrics:

UIBarMetricsDefault];

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 幼儿教育 > 育儿理论经验

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1