自己定义导航栏:

//  CustomNaviBarView.h

#import <UIKit/UIKit.h>

@interface CustomNaviBarView : UIView
{
@private
/**
* 左側button
*/
UIButton* _leftButton;
/**
* 右側button
*/
UIButton* _rightButton;
/**
* 中部标签
*/
UILabel* _navTitle;
} @property(nonatomic,strong)UIButton* leftButton;
@property(nonatomic,strong)UIButton* rightButton;
@property(nonatomic,strong)UILabel* navTitle; /**
* 返回一个自己定义导航条
*
* @param controller 控制器对象
* @param leftTitle 导航左側文本,默认:@"取消"
* @param rightTitle 导航右側文本
* @param centerTitle 导航中部文本
*
* @return 导航条对象
*/
- (CustomNaviBarView*)initCustomNaviBarViewOnController:(UIViewController*)controller leftTitle:(NSString*)leftTitle rightTitle:(NSString*)rightTitle centerTitle:(NSString*)centerTitle; @end
//  CustomNaviBarView.m

#import "CustomNaviBarView.h"
#import "Constant.h" @implementation CustomNaviBarView @synthesize leftButton = _leftButton;
@synthesize rightButton = _rightButton;
@synthesize navTitle = _navTitle; - (CustomNaviBarView*)initCustomNaviBarViewOnController:(UIViewController*)controller leftTitle:(NSString*)leftTitle rightTitle:(NSString*)rightTitle centerTitle:(NSString*)centerTitle
{
//1.创建导航栏视图
self = [super initWithFrame:CGRectMake(0, 0, WIDTH_SCREEN, 65)];
if (self != nil)//当导航视图没有载入成功的时候推出该方法
{
//1.为导航视图设置背景
self.backgroundColor = [UIColor colorWithRed:248 / 255.0 green:248 / 255.0 blue:248 / 255.0 alpha:1];
[[controller navigationController] setNavigationBarHidden:YES animated:YES]; //2.导航面板左边的取消按钮
_leftButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
if (_leftButton != nil)
{
_leftButton.frame = CGRectMake(15, 20, 65, 44);
if (leftTitle != nil) {
[_leftButton setTitle:leftTitle forState: UIControlStateNormal];
}else
{
[_leftButton setTitle:POST_CANCEL_BUTTON forState: UIControlStateNormal];
}
[_leftButton setTitleColor:[[UIColor alloc] initWithRed:0 green:158/255.0 blue:150/255.0 alpha:1.0]forState:UIControlStateNormal];
_leftButton.titleLabel.font = [UIFont systemFontOfSize: 16.0];
_leftButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
//[leftButton addTarget:self action:@selector(cancelButtonEventTouchUpInside)forControlEvents :UIControlEventTouchUpInside];
[self addSubview:_leftButton];
}
//3.导航面板右边的公布按钮
_rightButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
if (_rightButton != nil)
{
[_rightButton setFrame:CGRectMake(WIDTH_SCREEN - 80, 20, 65, 44)];
if (_rightButton != nil) {
[_rightButton setTitle:rightTitle forState: UIControlStateNormal];
}else
{
//[rightButton setTitle:POST_CANCEL_BUTTON forState: UIControlStateNormal];
}
[_rightButton setTitleColor:[[UIColor alloc] initWithRed:0 green:158/255.0 blue:150/255.0 alpha:1.0]forState:UIControlStateNormal];
_rightButton.titleLabel.font = [UIFont systemFontOfSize: 16.0];
_rightButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentRight;
//[rightButton addTarget:self action:@selector(postButtonEventTouchUpInside)forControlEvents :UIControlEventTouchUpInside];
[self addSubview:_rightButton];
} //4.导航面板中部文字
_navTitle = [[UILabel alloc] initWithFrame:CGRectMake(80, 20, WIDTH_SCREEN - 80 - 80, 44)];
if (_navTitle != nil)
{
[_navTitle setTextColor:[UIColor blackColor]];
if (centerTitle != nil)
{
_navTitle.text = centerTitle;
}else
{
//navTitle.text = @"";
}
[_navTitle setTextAlignment:NSTextAlignmentCenter];
_navTitle.font = [UIFont systemFontOfSize:18.0];
[self addSubview:_navTitle];
} //5.在导航视图底加入切割线
UIView *navDividingLine = [[UIView alloc] init];
if (navDividingLine != nil)
{
navDividingLine.frame = CGRectMake(0, 20 + 44, WIDTH_SCREEN, 1);
navDividingLine.backgroundColor = [UIColor colorWithRed:221 / 255.0 green:221 / 255.0 blue:221 / 255.0 alpha:1];
[self addSubview:navDividingLine];
} //6.往view添加导航栏
//[controller.view addSubview:navView];
}
return self;
} @end

怎样使用:

    //1.创建导航
CustomNaviBarView* customNaviBarView = [[CustomNaviBarView alloc] initCustomNaviBarViewOnController:self leftTitle: nil rightTitle:NEWADDRESS_ADD_TITLE centerTitle:NEWADDRESS_NAVIGATION_TITLE];
if (customNaviBarView != nil)
{
[customNaviBarView.leftButton addTarget:self action:@selector(cancelButtonEventTouchUpInside) forControlEvents:UIControlEventTouchUpInside];
[customNaviBarView.rightButton addTarget:self action:@selector(addButtonEventTouchUpInside) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:customNaviBarView];
}

自己定义切割线:

#import <UIKit/UIKit.h>

@interface CustomDividingLine : UIView

/**
* 创建一条切割线
*
* @param frame 位置及大小
* @param color 背景色,假设为空默认:#f2f2f2
*
* @return 新创建的切割线
*/
- (CustomDividingLine*)initDividingLineWithFrame:(CGRect)frame color:(UIColor*)color; @end
#import "CustomDividingLine.h"

@implementation CustomDividingLine

/**
* 创建一条切割线
*
* @param frame 位置及大小
* @param color 背景色
*
* @return 新创建的切割线
*/
- (CustomDividingLine*)initDividingLineWithFrame:(CGRect)frame color:(UIColor*)color
{
//3.2.1切割线
self = [super init];
if (self != nil)
{
self.frame = frame;
if (color != nil)
{
self.backgroundColor = color;
}
else
{
self.backgroundColor = [[UIColor alloc] initWithRed:242/255.0 green:242/255.0 blue:242/255.0 alpha:1.0];
}
}
return self;
} @end

怎样使用:

    //3.切割线
CustomDividingLine* customDividingLine = [[CustomDividingLine alloc]initDividingLineWithFrame:CGRectMake(0, 65 + 100, WIDTH_SCREEN, 1) color:nil];
if (customDividingLine != nil)
{
[self.view addSubview:customDividingLine];
}

ios 自己定义导航栏和切割线的更多相关文章

  1. iOS系统中导航栏的转场解决方案与最佳实践

    背景 目前,开源社区和业界内已经存在一些 iOS 导航栏转场的解决方案,但对于历史包袱沉重的美团 App 而言,这些解决方案并不完美.有的方案不能满足复杂的页面跳转场景,有的方案迁移成本较大,为此我们 ...

  2. 【转】iOS中设置导航栏标题的字体颜色和大小

    原文网址:http://www.360doc.com/content/15/0417/11/20919452_463847404.shtml iOS中设置导航栏标题的字体颜色和大小,有需要的朋友可以参 ...

  3. iOS中设置导航栏标题的字体颜色和大小

    iOS中设置导航栏标题的字体颜色和大小,有需要的朋友可以参考下. 在平时开发项目的时候,难免会遇到修改导航栏字体大小和颜色的需求,一般使用自定义视图的方法,其实还存在一种方法. 方法一:(自定义视图的 ...

  4. iOS学习——更改导航栏的返回按钮的标题与颜色

    转载自:修改navigationController返回按钮颜色和文字 今天在做项目时遇到这个问题,试了很多方法都失败了.最后终于找到正确的方案了,在这里分享给大家. 引言 在iOS开发过程中,Nav ...

  5. iOS:自定义导航栏,随着tableView滚动显示和隐藏

    自定义导航栏,随着tableView滚动显示和隐藏 一.介绍 自定义导航栏是APP中很常用的一个功能,通过自定义可以灵活的实现动画隐藏和显示效果.虽然处理系统的导航栏也可以实现,但是这个是有弊端的,因 ...

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

    1.自己定义button //左button UIButton *leftBtn = [[UIButton , , , )]; [leftBtn addTarget:self action:@sele ...

  7. iOS 动态修改导航栏颜色 UINavigationBar

    示例 所谓动态修改  意思是 在当前页面滚动的过程中 亦或 是在 触发返回事件\进入一个新的页面  导航栏的动态变化 由于系统级别的navBar 高度集成  很多自己想实现的功能 很不好弄 如果是通过 ...

  8. iOS 系统根据导航栏和状态栏自动修改布局

    问题 条件:1.有一个全屏大小的带导航的controller 2.隐藏导航栏,最顶上还会留出状态栏的位置,而不是全屏显示 解决方法 self.automaticallyAdjustsScrollVie ...

  9. iOS 滑动隐藏导航栏-三种方式

    /** 1隐藏导航栏-简单- */    self.navigationController.hidesBarsOnSwipe = YES; /** 2隐藏导航栏-不随tableView滑动消失效果 ...

随机推荐

  1. C语言的学习-基础知识点

    ---BOOL BOOL BOOL a = YES; printf("%d\n", a); a = NO; printf("%d", a); , b = ; B ...

  2. shell读取文件参数

    环境 csh 说明 通常我们需要使用使用shell脚本处理一些事务,每次调用shell都需要添加参数. 如果重复调用多次这个shell脚本,我们可以将参数存入指定文件,循环得到参数. shell脚本( ...

  3. Stm32高级定时器(三)

    Stm32高级定时器(三) 1 互补输出和死区插入 1.1 死区:某个处于相对无效状态的时间或空间 本来OCX信号与OCXREF时序同相同步,OCXN信号与OCXREF时序反相同步.但为了安全考虑,以 ...

  4. CATransform3D中m34字段的取值含义

    转载自:http://zhidao.baidu.com/link?url=OlVQoGOKIBmaXKgQisOLtzliTLPvreOOsRmny3yebA1Wb6-B3KtuKlRXmv0tO3y ...

  5. 《第一行代码》学习笔记16-碎片Fragment(1)

    1.碎片( Fragment):一种可以嵌入在活动当中的UI片段,能让程序更加合理和充分地利用大屏幕的空间,在平板上的应用广泛. 2.碎片同样包括布局,有自己的生命周期,甚至可理解成一个迷你型的活动. ...

  6. CUICatalog: Invalid asset name supplied:

    [UIImage imageNamed:name];但是这个name却是空的,所以就报了这个错了. 解决方法,在项目中搜索UIImage imageNamed:,然后打印看看所谓的name是否为空.找 ...

  7. C#中的表达式树的浅解

    表达式树可以说是Linq的核心之一,为什么是Linq的核心之一呢?因为表达式树使得c#不再是仅仅能编译成IL,我们可以通过c#生成一个表达式树,将结果作为一个中间格式,在将其转换成目标平台上的本机语言 ...

  8. 一篇详细的 Mysql Explain 详解

    一.语法 explain < table_name > 例如: explain select * from t3 where id=3952602; 二.explain输出解释 +—-+— ...

  9. python 画正弦曲线

    要画正弦曲线先设定一下x的取值范围,从0到2π.要用到numpy模块. numpy.pi 表示π numpy.arange( 0 , 2π ,0.01)  从0到2π,以0.01步进. 令 x=num ...

  10. No enclosing instance of type test8 is accessible. Must qualify the allocation with an enclosing instance of type test8 (e.g. x.new A() where x is an

    在编译一个例子时,结果编译时出现: No enclosing instance of type test8 is accessible. Must qualify the allocation wit ...