// 自定义导航栏"返回按钮"- (void)initNaviBackBtn{ UIButton *backBtn = [UIButtonbuttonWithType:UIButtonTypeCustom]; backBtn.frame = CGRectMake(0, 0, 50, 22); ...
分类:
其他好文 时间:
2014-11-26 13:37:31
阅读次数:
172
#import "UINavigationBar+CustomImage.h"@implementation UINavigationBar (CustomImage)-(UIImage *)drawImage:(NSString *)imageName{ UIImage *image = [U.....
分类:
其他好文 时间:
2014-11-26 13:31:37
阅读次数:
271
自定义导航栏:
// CustomNaviBarView.h
#import
@interface CustomNaviBarView : UIView
{
@private
/**
* 左侧按钮
*/
UIButton* _leftButton;
/**
* 右侧按钮
*/
UIButton* _rightBu...
分类:
移动开发 时间:
2014-11-20 13:44:01
阅读次数:
189
//- (void)setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;-(id)init{...
分类:
移动开发 时间:
2014-11-20 01:23:21
阅读次数:
196
UILabel *titleText = [[UILabel
alloc] initWithFrame: CGRectMake(kWidth/2 -60,
0, 120,
50)];
titleText.backgroundColor = [UIColor
clearColor];
titleText.textAlignment =
NSTextAlignmentCe...
分类:
其他好文 时间:
2014-11-05 13:10:39
阅读次数:
137
第三方类库功能WXmodel数据层类FontLabel开源的Label类RTLabelLabel类DDmenuController左右滑动的框架Customcatagory自定义导航栏1.分析结构1.建一个主控制器MainController 继承自 UITabBarController。建一些基础...
分类:
其他好文 时间:
2014-10-31 15:10:45
阅读次数:
304
为尊重文章原作者,转载务必注明原文地址:http://www.cnblogs.com/wt616/p/3784717.html先看效果图:在自定义导航栏背景时,可能会遇到以下一些问题:1、当设置导航栏背景后,状态栏的颜色也会跟着一起改变掉,这可能不是你说希望看到的2、IOS7以上的版本和低版本显示出...
分类:
移动开发 时间:
2014-10-22 06:22:32
阅读次数:
160
ios 下自定义导航栏的BarButtonItem 会产生一些偏移问题,解决方案: 通过新建一个系统的带固定距离的Item来调节你的Item#define IOS7_NAVI_SPACE -10} [self.navigationItem setLeftBarButtonItems:[self...
分类:
移动开发 时间:
2014-10-17 00:24:53
阅读次数:
250
没有简单的技术,只有还没懂的问题.自定义导航栏的左右按钮,并且设置常态图片和高亮图,一个UIBarButtonItem肿么实现捏,咳咳,还是重写个方法吧.为了增加扩展性呢,就重写UIBarButtonItem的分类,通过类方法,来设置需求驱动开发把要设置的属性作为参数传进去,除了可以设置按钮,还可以...
分类:
其他好文 时间:
2014-08-09 02:28:06
阅读次数:
217
1.设置导航栏样式 [self.navigationBar setBackgroundImage:[UIImage imageNamed:@"navibarbackground"] forBarMetrics:UIBarMetricsDefault]; [self.navigationB...
分类:
其他好文 时间:
2014-07-31 09:42:35
阅读次数:
175