`
zl4393753
  • 浏览: 340277 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

ios5 Appearance

 
阅读更多
Since iOS 5 as a developer you can finally change the tint/design of some elements without much trouble. Changing the background of your UINavigationBar just became so much easier.

@selector(appearance)

The classes that support the UIAppearance protocol have access to an appearance selector. This returns the appearance proxy for the receiver.

It’s on this proxy that you can call selectors like setTintColor:, setBackgroundImage:forBarMetrics:, etc…

Here is a list of classes that are supported:

UIActivityIndicatorView
UIBarButtonItem
UIBarItem
UINavigationBar
UIPopoverController
UIProgressView
UISearchBar
UISegmentedControl
UISlider
UISwitch
UITabBar
UITabBarItem
UIToolbar
UIView
UIViewController
Change the navigation bar background

Here is a quick example how you can easily set the background image of a navigation bar for the whole application.

Add the following line of code to your application:didFinishLaunchingWithOptions: in your AppDelegate:

[[UINavigationBar appearance]
setBackgroundImage:[UIImage imageNamed:@"navbar.png"]
forBarMetrics:UIBarMetricsDefault];
This will set the navbar.png image as a background on your navigation bar for all the navigation bars in your application.

Appearance depending on containment

But what if you want your popover to have the default blue UINavigationBar, but you just changed the appearance for the application. Than you can add this line of code:

[[UINavigationBar appearanceWhenContainedIn:
[UIPopoverController class], nil]
setBackgroundImage:nil
forBarMetrics:UIBarMetricsDefault];
When the UINavigationBar is used inside a UIPopoverController, then the background image for the navigation bar will be nil, and therefore the default background will be shown.

You can use UIPopoverController, your custom UIViewController classes, etc… as the containment classes.

What selectors are available on a class

How to find out which selectors can be accessed by the appearance proxy? Just go to XCode and go to the header file of a class, for example UINavigationBar.

In this header file you find the methods supported by the proxy by searching for the UI_APPEARANCE_SELECTOR constant. This is located behind the method definition.

You notice that the UINavigationBar appearance proxy supports the following selectors:

tintColor
setTintColor:
setBackgroundImage:forBarMetrics:
backgroundImageForBarMetrics:
titleTextAttributes
setTitleTextAttributes:
setTitleVerticalPositionAdjustment:forBarMetrics:
titleVerticalPositionAdjustmentForBarMetrics:
分享到:
评论

相关推荐

    html5 IOS下拉框样式

    5. **测试和兼容性**:在实际项目中,务必在多种iOS设备和版本上进行测试,因为不同的iOS版本可能有不同的渲染效果。同时,也要关注其他移动平台,如Android和Windows Phone,确保样式的一致性。 在`iosselect-...

    IOS应用源码之ios适用于iOS 5、iOS 6和iOS 7的自定义NavigationBar.zip

    - 使用`appearance` API来设置全局的导航栏样式,这在iOS 5及以上版本可用。 - 创建自定义的`UIBarButtonItem`子类,自定义按钮的样式和行为。 - 使用`titleView`或`leftBarButtonItem`、`rightBarButtonItem`...

    iOS5 UIViewController 新特性

    在iOS5中,UIViewController引入了一系列的新特性和改进,极大地增强了开发者处理界面和控制视图的能力。以下是对这些新特性的详细说明: 1. **Storyboards**:iOS5引入了Storyboard的概念,这是一种全新的界面设计...

    IOS5 Programming Cookbook

    Based on the provided information from "iOS 5 Programming Cookbook" by Vandad Nahavandipoor, we can derive a comprehensive set of knowledge points related to iOS development using Objective-C....

    iOS Swift简单Demo

    然而,在大多数情况下,状态栏是由系统自动管理的,开发者只需在Info.plist文件中配置相关的显示选项,比如`View controller-based status bar appearance`键,或者在特定的ViewController中重写`...

    iOS开发进阶完整版 唐巧

    6. **推送通知服务**:iOS的本地和远程推送通知机制,包括APNs(Appearance Notification Service)的配置,推送通知的接收和处理,以及自定义推送处理。 7. **地图与定位服务**:集成Apple MapKit服务,实现地图显示...

    IOS的app运行时不满屏,上下留有黑边

    5. **更新Info.plist**:检查Info.plist中的`View controller-based status bar appearance`项,确保其值设为`YES`。这将允许系统自动管理状态栏,防止因状态栏处理不当导致的黑边。 综上所述,解决Xcode项目中应用...

    ios输入框(input)背景色为白色无法去除.pdf

    第二段代码消除iOS存在的输入框不透明问题,通过设置-webkit-appearance:none和background:rgba(0,0,0,0)等属性来实现。 通过使用上述CSS样式可以解决iOS输入框背景色为白色的问题,并使得输入框背景色变得透明和...

    IOS源码应用Demo-tab bar controller 自定义颜色和演示demo.zip

    5. **代码注释**:作为一个学习资源,源码应该有清晰的注释,解释关键代码的作用和实现原理。 通过分析这个压缩包中的源码,开发者可以学习到如何将自定义颜色应用到Tab Bar上,同时也可以了解iOS应用的架构设计和...

    iOS换肤model

    5. **状态保存与恢复**:确保用户的皮肤选择被保存在用户偏好设置或数据库中。当应用启动时,根据保存的状态自动应用相应的皮肤。 6. **性能优化**:为了保证性能,避免频繁地更改UI元素。可以考虑在初始化时一次性...

    IOS 自定义导航栏 和表格 学习笔记

    1. 使用`appearance`代理方法统一设置所有导航栏的样式。 2. 在每个ViewController中重写`navigationBar:didPopItem:`方法,根据需要调整导航栏在切换时的状态。 3. 自定义UIBarButtonItem,通过设置图像或者使用...

    改变ios状态栏

    在iOS开发中,状态栏(Status Bar)是用户界面的重要组成部分,它通常显示时间、网络连接、电池状态等信息。开发者有时需要根据应用的需求自定义状态栏,例如在加载数据时显示“Loading”提示,改变其颜色,或者展示...

    iOS tabbar图片资源

    5. **使用图片资源**:在创建TabBarItem时,将上述提到的ic_开头的图片作为普通状态和选中状态的图片,例如: ```swift let homeItem = UITabBarItem(title: "首页", image: UIImage(named: "ic_home_all@3x"), ...

    ios-segment.zip

    - `appearance`: 控制整体外观的配置对象,可以修改边框颜色、背景色等。 - `titleForSegmentAtIndex:`:获取指定索引处段的标题。 - `setTitle:forSegmentAtIndex:`:设置指定索引处段的标题。 - `...

    iOS- 解决App上下黑边

    如果你希望应用全屏显示,可以尝试设置`View controller-based status bar appearance`为`NO`,然后在Info.plist文件中设置StatusBar的风格和透明度。 6. **代码调整** 在某些情况下,可能需要在代码中进行额外的...

    ios应用源码之类似flipboard的杂志风格的view 2018128

    7. **Appearance Customization**:允许用户调整界面外观的接口或设置。 在提供的压缩包中,"ios应用源码之类似flipboard的杂志风格的view"应该包含了这些组件的实现。通过阅读和理解源码,开发者可以学习到如何...

    IOS从基础到高级教程

    使用`UINavigationBar`的`appearance`代理方法可以全局修改导航条的外观,而针对特定视图控制器,则可通过重写`navigationBar`属性来实现更精细的控制。 #### 3. 动画与可视化特效 动画效果是提高用户界面交互体验...

    ios tabbar demo

    - **选中状态**:自定义选中状态的视觉效果,如添加动画,可以使用`appearance` proxy 或者重写`- (void)setSelected:(BOOL)selected animated:(BOOL)animated`方法。 3. **自定义Item行为** 如果需要在点击Tab ...

    ios7状态栏的显隐demo

    3. 最后,确保在`Info.plist`文件中设置`View controller-based status bar appearance`为`YES`,这样系统才会尊重每个`UIViewController`对状态栏的偏好设置。 这个Demo "TestIOS7" 包含了一个简单的示例项目,你...

    iOSUI基础控件常用方法探微

    tableView.sectionHeaderHeight = 5 tableView.sectionFooterHeight = 0 ``` **2.2 设置背景颜色** 在默认情况下,group 类型的 UITableView 背景会覆盖一层斜线的 View,此时直接设置 `backgroundColor` 将不起...

Global site tag (gtag.js) - Google Analytics