摘要:
IOS5以下的使用方法:1.使用xib布局时//
// UINavigationBar.h
// ITrafficDemo
//
// Created by 贾 斌 on 12-10-31.
// Copyright 2012 iimob. All rights reserved.
// #import <UIKit/UIKit.h> @interface UINavigationBar(CustomImage)
- (void)drawRect:(CGRect)rect;
@end//自定义UINavigationBar背景图片
@implementation UINaviga. 阅读全文
摘要:
很多时候我们使用navigationController时由于上一个navigationController.title的字符串太长,而导致下一个界面的返回按钮变的很长也很难看,为了美观我们我们可以把返回按钮的title改为back,或者是用自定义的图片。1.把返回按钮的title改为back:这里要特别说明一下,需要在上一个viewController里面写上以下代码。若是在当前viewController中无论你是用self.navigationItem.leftBarButtonItem.title = @"back"; 还是用self.navigationItem. 阅读全文