UITableView就像Android中的ListView。
iOS程序结构,也是典型的MVC模式:
type | desc |
---|---|
Model | 数据,数据模型 |
View | 视图 |
Controller | 控制视图和数据,负责数据流向,页面如何跳转,处理程序逻辑 |
UITableView是一个视图,所以他还需要数据源和控制器,同时还需要一个代理对象来响应UITableView的各种事件。
UITableViewController类可以满足这三个角色:view controller, data source, delegate.
UITableViewController是UIViewController的一个子类,所以他也有一个view属性,这个属性总是指向UITableView实例。
定义自己的UITableViewController
我们来写自己的table view controller,继承UITableViewController类。
#import <UIKit/UIKit.h>
@interface BKItemsViewController : UITableViewController
@end
UITableViewController的指定初始化方法是 initWithStyle:
,该方法接受一个常量来指定table view style,其值可以是:UITableViewStylePlain
和 UITableViewStyleGrouped
我们可以设置自己的指定初始化方法:
- 指定初始化方法需要调用父类的指定初始化方法
- 重写父类的指定初始化方法,方法中调用我们的指定初始化方法
#import "BKItemsViewController.h"
@implementation BKItemsViewController
// 在自己的指定初始化方法中调用父类的指定初始化方法
- (instancetype)init{
self = [super initWithStyle:UITableViewStylePlain];
return self;
}
// 重写父类的指定初始化方法:调用自己的指定初始化方法
- (instancetype)initWithStyle:(UITableViewStyle)style{
return [self init];
}
@end
Data Source
创建一个单例类来为table view提供数据源
#import <Foundation/Foundation.h>
@class BKItem;
@interface BKItemStore : NSObject
@property (nonatomic, readonly) NSArray *allItems;
// 静态方法,此方法用来创建单例类对象
+ (instancetype)sharedStore;
- (BKItem *)createItem;
@end
- 在头文件中,声明sharedStore静态方法,用来创建单例类的实体
- 静态方法以+号开始
- @class编译器指令,告诉编译器你不需要知道这个类的具体信息,从而加快编译速度;当真正要创建这个类的实例或是要调用其方法时,就必须导入其头文件了
#import "BKItemStore.h"
#import "BKItem.h"
@interface BKItemStore ()
@property (nonatomic) NSMutableArray *privateItems;
@end
@implementation BKItemStore
// 类方法,获得单例类的实例
+ (instancetype)sharedStore{
// 静态变量:当方法执行完后,不会被销毁
static BKItemStore *sharedStore = nil;
if(!sharedStore){
sharedStore = [[self alloc] initPrivate];
}
return sharedStore;
}
- (instancetype)init{
@throw [NSException exceptionWithName:@"Singleton" reason:@"Use +[BKItemStore sharedStore]" userInfo:nil];
return nil;
}
// 指定初始化方法
- (instancetype)initPrivate{
self = [super init];
if(self){
_privateItems = [[NSMutableArray alloc] init];
}
return self;
}
- (BKItem *)createItem{
BKItem *item = [BKItem randomItem];
[self.privateItems addObject:item];
return item;
}
// The compiler only auto-synthesizes an instance variable if you let it synthesize at least one accessor.
// 由于allItems是readonly,而此处我们又重写了其get方法,所以编译器不会帮我们创建实例变量
- (NSArray *)allItems{
return self.privateItems;
}
@end
- 在class extension中声明类的私有实例变量
- 在方法中声明的static variable,当方法执行结束后,不会被销毁
- 在单例类的init方法,直接抛出异常,如果有人调用此方法,告知他调用sharedStore方法
- 对象内部维护一个mutable data structure,但是其他对象只能访问他的immutable version
- 我们知道编译器会自动为我们声明的@property,创建instance variable以及set get方法,但是如果我们重写了set get方法,那么编译器就不会帮我们生成instance variable了
实现UITableViewDataSource protocol的方法
tableView:numberOfRowsInSection:返回table view需要显示多少行。
tableView:cellForRowAtIndexPath:创建table view cell,并设置cell的content。
#import "BKItemsViewController.h"
#import "BKItem.h"
#import "BKItemStore.h"
@implementation BKItemsViewController
// 在自己的指定初始化方法中调用父类的指定初始化方法
- (instancetype)init{
self = [super initWithStyle:UITableViewStylePlain];
if(self){
for (int i=0; i<5; i++) {
[[BKItemStore sharedStore] createItem];
}
}
return self;
}
// 重写父类的指定初始化方法:调用自己的指定初始化方法
- (instancetype)initWithStyle:(UITableViewStyle)style{
return [self init];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
// 返回table view需要显示多少行
return [[[BKItemStore sharedStore] allItems] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
// 创建table view cell
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"UITableViewCell"];
// 找到对应行的item
NSArray *items = [[BKItemStore sharedStore] allItems];
// NSIndexPath有两个属性:section,row
BKItem *item = items[indexPath.row];
cell.textLabel.text = [item description];
return cell;
}
@end
UITableViewCell
如下图,table view cell有一个subview -- contentView
contentView有三个subview:两个UILabel(textLabel, detailTextLabel),一个UIImageView(imageView)
UITableViewCellStyle控制contentView的三个subview如何显示
Reusing UITableViewCells
为了避免创建大量table view cell,iOS用table view cell pool来回收并重用cell,避免占用大量内存,当cell不在屏幕上显示了,会被放到cell pool中,当滑动table view,table view datasource会检查cell pool是否有未使用cell,如果有就为其设置新的数据返回给table view。
有时候一个table view会有不同类型的cell,所以产生不同类弄的cell在同一个cell pool中,此时,如果你需要某种特定类型的cell,可以指定reuseIdentifier,每个cell都有一个reuseIdentifier属性,按照约定reuseIdentifier是cell的类名。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
// 创建table view cell
//UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"UITableViewCell"];
// Get a new or recycled cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell" forIndexPath:indexPath];
// 找到对应行的item
NSArray *items = [[BKItemStore sharedStore] allItems];
BKItem *item = items[indexPath.row];
cell.textLabel.text = [item description];
return cell;
}
要告诉table view对应的reuseIdentifier是哪个cell类:
- (void)viewDidLoad{
[super viewDidLoad];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"UITableViewCell"];
}
本文是对《iOS Programming The Big Nerd Ranch Guide 4th Edition》第八章的总结。