自定义导航栏图片 & 适配 (类别)

#import "UINavigationBar+CustomImage.h"

@implementation UINavigationBar (CustomImage)

-(UIImage *)drawImage:(NSString *)imageName

{

    

    UIImage *image = [UIImageimageNamed:imageName];

    CGSize ssySize = CGSizeMake(320, (IOS_VERSION_7)?64:44);

    UIGraphicsBeginImageContext(ssySize);

    [image drawInRect:CGRectMake(0, 0, ssySize.width, ssySize.height)];

    UIImage *reImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return reImage;

}

- (UIImage *)barBackground

{

    return [UIImageimageNamed:@"live_bg_yellow.png"];

}

- (void)didMoveToSuperview

{

    //iOS5 only

    if ([selfrespondsToSelector:@selector(setBackgroundImage:forBarMetrics:)])

    {

        [selfsetBackgroundImage:[selfdrawImage:@"live_bg_yellow.png"] forBarMetrics:UIBarMetricsDefault];

        

        // 自定义导航栏字体颜色大小

        [selfsetTitleTextAttributes:@{

                                       NSForegroundColorAttributeName: [UIColorredColor],

                                       NSFontAttributeName: [UIFontboldSystemFontOfSize:14],

                                       }];

        

//        [[UINavigationBar appearance] setTitleTextAttributes:@{

//                                       NSForegroundColorAttributeName: [UIColor redColor],

//                                       NSFontAttributeName: [UIFont boldSystemFontOfSize:14],

//                                       }];

        

    }

}

//this doesn‘t work on iOS5 but is needed for iOS4 and earlier

- (void)drawRect:(CGRect)rect

{

    //draw image

    [[selfbarBackground] drawInRect:rect];

}

@end

时间: 2024-10-22 22:29:27

自定义导航栏图片 & 适配 (类别)的相关文章

iOS 自定义导航栏笔记

一.UINavigationBar的结构 导航栏几乎是每个页面都会碰到的问题,一般两种处理方式:1.隐藏掉不显示 2.自定义 1. 添加导航栏 TestViewController * mainVC = [[TestViewController alloc] init]; UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:mainVC]; self.window.ro

自定义导航栏标题按钮

自定义标题栏按钮 @implementation SNTitleButton - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { //图片居中 self.imageView.contentMode = UIViewContentModeCenter; //字体居右 self.titleLabel.textAlignment = NSTextAlignmentRight; //字体

解决 ios7.0 以后自定义导航栏左边按钮靠右的问题

解决 ios7.0 以后自定义导航栏左边按钮靠右的问题 www.111cn.net 编辑:edit02_lz 来源:转载 最近开发了一个ios的app,在ios7.0+出现自定义导航栏左边按钮出现靠右的情况,后来自己解决了,解决办法如下 1.自定义按钮  代码如下 复制代码 //左按钮UIButton *leftBtn = [[UIButton alloc]initWithFrame:RectWithPara(-20, 0, 44, 44)];[leftBtn addTarget:self ac

父子控制器中的自定义导航栏

提到自定义导航栏,大家首先想到的就是自己写个自定义导航控制器,然后设置自己的导航控制器的主题.再把包装着自己控制器的导航控制器的class填上自己写的自定义nav如果遇到个别控制器的导航栏想与众不同,就再写个自定义nav然后再弄个新的导航控制器包裹自己. 可是,如果一个项目中用到了 父子控制器,上面的这种做法就会没有效果.原因就是取不到导航栏. 比如我做的大概架构是一个collectionView的循环引用,让一个个tableview都是包装在我的collectionViewcell里面的,然后

关于自定义导航栏的那些事儿 UINavigationController

本文只是把我看到的关于自定义导航栏的一些资料搜集了一下 自定义导航栏样式的方法有两种: 1.通过 [UINavigationBar apperance]  来给整个应用上的所有的navigationbar添加样式,这是一个全局的样式设置. 2.当然如果你想要给当前的某一特定的navigationbar添加特定样式就可以通过self.navigationController.navigatinoBar 找到当前bar实例,再进行样式设置. 第二种方法,想必大家都知道,相关资料一搜一大把,不累赘了.

微信小程序添加底部自定义导航栏(tabBar)

tabBar参数说明参考: 官网文档 具体配置: 1.在app.json中添加你的自定义导航栏信息(名字,点击前图片,点击后图片,要跳转的界面等等) 注意事项:tabBar最多五个 参考示例: "tabBar": { "color": "#8a8a8a", "selectedColor": "#937bf5", "list": [ { "iconPath": &quo

React Native自定义导航栏

之前我们学习了可触摸组件和页面导航的使用的使用: 从零学React Native之09可触摸组件 - 从零学React Native之03页面导航 - 经过之前的学习, 我们可以完成一个自定义导航栏了, 效果如下: 我们需要创建一个 NaviBar.js 用来显示顶部的导航栏, 还需要四个界面(Page1.js,Page2.js,Page3.js,Page4.js). 当然还需要修改index.android.js或者index.ios.js 用来处理4个界面的切换. 导航栏NaviBar 实现

ios7以上自定义导航栏标题的字体大小及颜色的方法

自定义导航栏的字体和颜色,只需要自定义一个lable,然后将lable添加到导航栏的titleview中就可以了 代码如下 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0,0,0,0)];//这个frame是初设的,没关系,后面还会重新设置其size. [label setNumberOfLines:0]; UIFont *font = [UIFont fontWithName:@"Arial" size:17]

自定义导航栏返回按钮文字

自定义导航栏返回按钮文字 by 伍雪颖 navigationItem.backBarButtonItem = UIBarButtonItem(title: "返回", style: UIBarButtonItemStyle.Plain, target: nil, action: nil)