摘要:- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { // 为其定义一个标识符,在重用机制中,标识符非常重要,这是...
阅读全文
摘要:demo地址 :链接: http://pan.baidu.com/s/1c00ipDQ 密码: mi4c 1 @interface ViewController () 2 3 @property (nonatomic, strong) UILabel *label; 4 5 @end 6 7 ...
阅读全文
摘要://// AlbumViewController.m// HwangKop08.18//// Created by rimi on 15/8/20.// Copyright (c) 2015年 rimi. All rights reserved.//#import "AlbumViewControl...
阅读全文
摘要:1.在AppDelegate.m中引用#import "RootViewController.h"- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launch...
阅读全文
摘要://// ViewController.m// UI_Lesson3//// Created by archerzz on 15/8/13.// Copyright (c) 2015年 archerzz. All rights reserved.//#import "ViewController.h...
阅读全文
摘要:#pragma mark - 控制器生命周期// 视图将要出现- (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; NSLog(@"%s", __func__);}// 视图已经出现- (void)vie...
阅读全文
摘要:加入TextFieldDelagate@interface RootViewController () @property (nonatomic, strong) UITextField *usernameTextField;@property (nonatomic, strong) UITextF...
阅读全文
摘要://// ViewController.m// UIScrollView//// Created by rimi on 15/8/19.// Copyright (c) 2015年 rimi. All rights reserved.//#import "ViewController.h"@inte...
阅读全文
摘要:iOS传值的几种方式自定义初始化传值属性传值代理传值block传值单例传值介绍在这里我会给大家讲解iOS中比较常见的几种传值方式,如果你能熟练掌握这几种方式,那么你对传值的理解将会更上一层楼。环境:XCode6.3模拟器:iPhone 6首先我们来创建一个SingleViewApplication工...
阅读全文