iOS设置[self.navigationItem setTit

2016-08-15  本文已影响3393人  韩发发吖
自定义NavigationBar功能需求在NavigationBar上添加搜索框,并对其位置提出了要求,系统中自带的TitleView不能满足,因此查阅了资料,重写了TitleView
自定义NavigationBar.png

(注释要是在整个工程中用这个类的情况比较多可以单独抽类封装,要是只有一个建议将其写在该使用类的里面)

TitleView.h文件,重写TitleView继承UIView

#import <UIKit/UIKit.h>@interface TitleView : UIView // 这里继承的父类需要注意
@end

TitleView.m文件,重写其父类的Frame

#import "TitleView.h"
@implementation TitleView
// 如果这个没有调用父类的方法可以不用写该方法
- (instancetype)initWithFrame:(CGRect)frame { 
         self = [super initWithFrame:frame];
         if (self) {  } 
        return self;
}
// 这个重写方法为重点
- (void)setFrame:(CGRect)frame { 
         [super setFrame:CGRectMake(0, 0, self.superview.frame.size.width,         self.superview.bounds.size.height)];
}
@end
在需要使用的地方引用
// 这里之所以要把leftBarButtonItem的title = @“”,设为了防止界面从上一层pushViewController:或是从该界面popViewControllerAnimated:是显示出系统自带的返回箭头
 UIBarButtonItem * backButtonItem = [[UIBarButtonItem alloc] init]; [backButtonItem setTitle:@""];
self.navigationItem.leftBarButtonItem = backButtonItem;  
_titleView = [[TitleView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 44)]; 
_titleView.backgroundColor = [UIColor blackColor]; 
self.navigationItem.titleView = _titleView;
上一篇下一篇

猜你喜欢

热点阅读