1、改变高度自定义UINavigationBar的新类别:[cpp]view plaincopy//UINavigationBar+BackgoundImage.h#import@interfaceUINavigationBar(BackgoundImage)@end在新类别的实现中,覆盖原有类的方...
分类:
移动开发 时间:
2015-07-28 18:22:51
阅读次数:
134
第一步://在info.plist中添加一个字段:view controller -base status bar 设置为NO;//导航颜色[[UINavigationBar appearance] setBarTintColor:[UIColor XXXX]];[[UITableViewCell ...
分类:
移动开发 时间:
2015-07-28 14:32:14
阅读次数:
181
原文:http://blog.csdn.net/luoyeffcs/article/details/16106707目录1.关系分析2.关系综述3.概念点4.疑问1.关系分析UIBarItem-> UIBarButtonItem -> UINavigationItem1.1UIBarItem:UIB...
分类:
其他好文 时间:
2015-07-25 13:34:16
阅读次数:
161
//一键换肤 [[UINavigationBar appearance]setBarTintColor:[UIColor redColor]];//给所有的NavigationBar换颜色 [[UITabBar appearance]setBarTintColor:[UIColor blueCo.....
分类:
移动开发 时间:
2015-07-24 12:24:03
阅读次数:
156
[[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];[[UINavigationBar appearance] setShadowImag...
分类:
其他好文 时间:
2015-07-23 13:24:52
阅读次数:
116
code: UINavigationBar?*navigationBar?=?self.navigationController.navigationBar;
[navigationBar?setBackgroundImage:[UIImage?imageNamed:@"parentTopBackgroupd"]?forBarPosition:UIBarPositionAny...
分类:
其他好文 时间:
2015-07-23 12:18:50
阅读次数:
165
为了方便演示,我用storyBoard建立了一个基本的导航栏 并在代码中获得了NavgationBar UINavigationBar *bar = self.navigationController.navigationBar;1[bar setTintColor:[UIColor whiteCo...
分类:
移动开发 时间:
2015-07-21 12:32:24
阅读次数:
129
之前虽然也手写过这两中视图控制器,但是更多的还是使用SB来创建,最近发现了一些问题,现在总结一下。1.改变UINavigationBar的颜色在UINavigationController中,之前只需要设置UINavigationController.navigationBar.tintColor ...
分类:
其他好文 时间:
2015-07-18 12:13:57
阅读次数:
181
Mads Mobæk:给UINavigationBar添加按钮的示例代码
1
2
3
4
5
6
7
8
UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithTitle:@"Done"
style:UIBarButtonItemStyleDone target...
分类:
其他好文 时间:
2015-07-15 19:26:55
阅读次数:
199
步骤一:
为UIImage类添加静态方法:
extension UIImage {
static func imageWithColor(color: UIColor) -> UIImage {
let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
UIGraphicsBegin...
分类:
其他好文 时间:
2015-07-13 20:40:36
阅读次数:
242