接上篇点击打开链接
LeftNavGroupTemplate.cs
internal class LeftNavGroupTemplate : ITemplate
{
// Fields
private int index;
private string xml;
// Methods
public ...
分类:
其他好文 时间:
2014-12-18 15:12:32
阅读次数:
121
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
感谢翻译小组成员dingdaojun热心翻译。本篇文章是我们每周推荐优秀国外的技术类文章的其中一篇。如果您有不错的原创或译文,欢迎提交给我们,更欢迎其他朋友加入我们的翻译小组(联系qq:2408167315)。
在iOS7以前,开发者如果希望定制导航控制器推入推出视图时的转场动画,一般都只能通过子类化UINavigationController或者自己编写动画代码去覆盖相应的方法,现...
分类:
移动开发 时间:
2014-11-27 12:51:11
阅读次数:
297
// 自定义导航栏"返回按钮"- (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
可定制的navigationitem ,当我们使用系统的方法设置navigationItem的leftItem或者rightItem时,我们会 发现item位置会有偏差(左边的偏右,右边的偏左)。当设置navigationItem的titleView时, 会发现图片被拉伸。因此我对系统的设置方法做了...
分类:
移动开发 时间:
2014-11-25 10:30:57
阅读次数:
186
自定义导航栏:
// 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