码迷,mamicode.com
首页 >  
搜索关键字:自定义导航    ( 134个结果
SharePoint开发 - 自定义导航菜单(三)附其他代码
接上篇点击打开链接 LeftNavGroupTemplate.cs internal class LeftNavGroupTemplate : ITemplate { // Fields private int index; private string xml; // Methods public ...
分类:其他好文   时间:2014-12-18 15:12:32    阅读次数:121
解决ios7.0 以后自定义导航栏左边按钮靠右的问题
1.自定义按钮 //左按钮         UIButton *leftBtn = [[UIButton alloc]initWithFrame:RectWithPara(-20, 0, 44, 44)];         [leftBtn addTarget:self action:@selector(btnClicked:) forControlEvents:...
分类:移动开发   时间:2014-12-18 10:25:09    阅读次数:233
自定义导航条 文字大小颜色等 按钮大小图标等 背景色
UIButton *leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];     [leftBtn setTitleColor:lightBlue forState:UIControlStateNormal];     leftBtn.backgroundColor = [UIColor clearColor];     l...
分类:其他好文   时间:2014-12-05 19:26:24    阅读次数:131
iOS7教程系列:自定义导航转场动画以及更多
感谢翻译小组成员dingdaojun热心翻译。本篇文章是我们每周推荐优秀国外的技术类文章的其中一篇。如果您有不错的原创或译文,欢迎提交给我们,更欢迎其他朋友加入我们的翻译小组(联系qq:2408167315)。    在iOS7以前,开发者如果希望定制导航控制器推入推出视图时的转场动画,一般都只能通过子类化UINavigationController或者自己编写动画代码去覆盖相应的方法,现...
分类:移动开发   时间:2014-11-27 12:51:11    阅读次数:297
自定义导航栏按钮 baseViewController中写!
// 自定义导航栏"返回按钮"- (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
可自定义导航条功能案例ios项目源码
可定制的navigationitem ,当我们使用系统的方法设置navigationItem的leftItem或者rightItem时,我们会 发现item位置会有偏差(左边的偏右,右边的偏左)。当设置navigationItem的titleView时, 会发现图片被拉伸。因此我对系统的设置方法做了...
分类:移动开发   时间:2014-11-25 10:30:57    阅读次数:186
ios 自定义导航栏和分割线
自定义导航栏: // CustomNaviBarView.h #import @interface CustomNaviBarView : UIView { @private /** * 左侧按钮 */ UIButton* _leftButton; /** * 右侧按钮 */ UIButton* _rightBu...
分类:移动开发   时间:2014-11-20 13:44:01    阅读次数:189
IOS 自定义导航栏背景
//- (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
134条   上一页 1 ... 10 11 12 13 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!