上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 本文目录0.UIView常用的属性和操作0_1.UIView常见的属性0_2.UIView状态0_3.UIView常用的方法1.文本框UITextField和文本视图UITextView1_1.文本框UITextField(几乎包含了iOS控件的所有的通用属性)1_2.文本视图UITextView1... 阅读全文
posted @ 2015-03-11 17:44 銱ル╬鎯噹 阅读(189) 评论(0) 推荐(0) 编辑
摘要: BuildSettings->Architectures-->Architectures->Standardarchitectures -->ValidArchitectures-->arm64armv7armv7s 阅读全文
posted @ 2015-03-11 14:37 銱ル╬鎯噹 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1. TableView不显示没内容的Cell怎么办? 类似于图1,我不想让下面的那些空显示。很简单,添加“self.tableView.tableFooterView = [[UIView alloc] init];”试过都说好,加完这句之后就变成了图2的样子。 2. 自定义了leftBarb... 阅读全文
posted @ 2015-03-04 10:45 銱ル╬鎯噹 阅读(125) 评论(0) 推荐(0) 编辑
摘要: dispatch_queue_t querue= dispatch_get_main_queue(); dispatch_queue_t querue2= dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT , 0); disp... 阅读全文
posted @ 2015-01-22 21:38 銱ル╬鎯噹 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 正文: UIViewAnimationOptionLayoutSubviews//提交动画的时候布局子控件,表示子控件将和父控件一同动画。UIViewAnimationOptionAllowUserInteraction//动画时允许用户交流,比如触摸UIViewAnimationOptionBe... 阅读全文
posted @ 2014-12-15 22:09 銱ル╬鎯噹 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 基于UI控件的实现原理,开发者完全可以开发出项目定制的控件——当iOS系统提供的UI控件不足以满足项目需要时,开发者可以通过继承UIView来派生自定义控件。当开发者打算派生自己的UI控件时,首先定义一个继承View基类的子类,然后重写View类的一个或多个方法,通常可以被用户重写的方法如下。Øin... 阅读全文
posted @ 2014-12-15 21:05 銱ル╬鎯噹 阅读(176) 评论(0) 推荐(0) 编辑
摘要: #import "UIBarButtonItem+Extension.h"@implementation UIBarButtonItem (Extension)+(UIBarButtonItem *)itemWithImageName:(NSString *)ImageName highImageN... 阅读全文
posted @ 2014-12-11 00:20 銱ル╬鎯噹 阅读(125) 评论(0) 推荐(0) 编辑
摘要: self.title=@"糗事百科"; UIBarButtonItem *item=[[UIBarButtonItem alloc] initWithTitle:@"返回" style:UIBarButtonItemStyleDone target:self action:nil]; se... 阅读全文
posted @ 2014-12-11 00:18 銱ル╬鎯噹 阅读(171) 评论(0) 推荐(0) 编辑
摘要: @implementation ZBMainViewController- (void)viewDidLoad { [super viewDidLoad];}+(void)initialize{ [self setupBarButtonItemTheme]; [self setupNaviga... 阅读全文
posted @ 2014-12-11 00:14 銱ル╬鎯噹 阅读(457) 评论(0) 推荐(0) 编辑
摘要: //// ZBMainViewController.m// TestProject//// Created by 张先森 on 14/12/5.// Copyright (c) 2014年 zhibin. All rights reserved.//#import "ZBMainViewContro... 阅读全文
posted @ 2014-12-09 00:37 銱ル╬鎯噹 阅读(109) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页