UITableView

UITableView就像Android中的ListView。

iOS程序结构,也是典型的MVC模式:

type desc
Model 数据,数据模型
View 视图
Controller 控制视图和数据,负责数据流向,页面如何跳转,处理程序逻辑

UITableView是一个视图,所以他还需要数据源和控制器,同时还需要一个代理对象来响应UITableView的各种事件。

UITableViewController类可以满足这三个角色:view controller, data source, delegate.

UITableViewControllerUIViewController的一个子类,所以他也有一个view属性,这个属性总是指向UITableView实例。

定义自己的UITableViewController

我们来写自己的table view controller,继承UITableViewController类。

#import <UIKit/UIKit.h>

@interface BKItemsViewController : UITableViewController

@end

UITableViewController的指定初始化方法是 initWithStyle:,该方法接受一个常量来指定table view style,其值可以是:UITableViewStylePlainUITableViewStyleGrouped

我们可以设置自己的指定初始化方法:

  • 指定初始化方法需要调用父类的指定初始化方法
  • 重写父类的指定初始化方法,方法中调用我们的指定初始化方法
#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》第八章的总结。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 210,914评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 89,935评论 2 383
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,531评论 0 345
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,309评论 1 282
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,381评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,730评论 1 289
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,882评论 3 404
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,643评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,095评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,448评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,566评论 1 339
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,253评论 4 328
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,829评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,715评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,945评论 1 264
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,248评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,440评论 2 348

推荐阅读更多精彩内容