UITableView——使用最多的控件

前言

在iOS开发过程中,UITableView可以说是实用最频繁的UIKit控件了,在这里我会先给出纯代码方法是用UITableView,以后会添加上使用StoryBoard的方法。希望能帮助一些iOS开发入门者(经验之谈,不足之处也期待有高手指教)

正文

UITableView采用的是iOS开发中常用的代理模式,即将控件需要使用的方法函数寄托给另一方让其代理完成。UITableView使用了UITableViewDelegateUITableViewDataSource 两个代理方法。我们在使用UITableView过程中可以将这两个代理交给任何NSObject让其代理执行。废话不多说,上代码。

UITableViewDataSource 包括以下方法

两个required(必要)方法:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
//第一个方法是返回一个Section中有多少行,一个Section类似于一组

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
//第二个方法是返回一个UITableViewCell,每一行对应一个Cell,Cell可自定义,还有重用Cell等问题
//indexPath包括section和row信息,对应第section的组和这个组中的第row行
//通过[indexPath row]和[indexPath section]获得

其它optional(非必要)方法:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; 
//这里返回的是TableView中Section个数,默认为一个             

- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;    
//返回一个Section顶上的文字 根据Section不同文字可以不同,通常用来归类显示
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
//同理,返回一个Section底端的文字


- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;
//能否编辑一个indexPath对应的cell 

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath;
//能否移动一个indexPath对应的cell

- (nullable NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView __TVOS_PROHIBITED;       
//返回一个数组,数组中应该包含的是tableView的索引信息,联想通讯录

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index __TVOS_PROHIBITED; 
//设置哪一个section对应哪一个索引信息,联想通讯录

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;
//编辑tableViewCell

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath;
//移动tableViewCell
UITableViewDelegate 包括38个方法,全部是optional(非必要)方法,最常用的是点击cell的反应,和编辑移动cell等。今天就暂且先不罗列。

说了些理论方法,我简单写一个例子展示如何具体使用。

程序都在ViewController中实现,有.h和.m两个文件
————————————————————————
ViewController.h 文件:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@end

ViewController.m 文件:

#import "ViewController.h"

//在这里设置代理
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>

@property (nonatomic, strong) UITableView *mainTableView;//我们创建的UITableView
@property (nonatomic, strong) NSMutableArray *mainTableViewDataArray;//存放UITableView的数据

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self mainTableView];//懒加载tableView
    [self initLocalData];
}
- (UITableView *)mainTableView{
    if (!_mainTableView) {
        _mainTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 20, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-20)];
        
        //这里很重要
        _mainTableView.delegate = self;
        _mainTableView.dataSource = self;
        //将我们创建的UITableView的代理交给self 也就是ViewController
        //如果没有这一步相当于mainTableView没有人代理,也就不会实现代理方法
        
        [self.view addSubview:_mainTableView];
    }
    return _mainTableView;
}
//初始化数据,这里是本地死的测试数据
- (void)initLocalData{
    _mainTableViewDataArray = [[NSMutableArray alloc]initWithObjects:@"hello",@"world", nil];
    [_mainTableView reloadData];//重新刷新tableView数据
    
}

#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return _mainTableViewDataArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    //使用cell重用机制
    static NSString *cellIdentifier = @"cellIdentifier";//设置cell重用标示
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    //根据标示去找cell,如果有现成的就用现成的
    if (!cell) {
        //没有现成的cell的时候:
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }
    cell.textLabel.text = [_mainTableViewDataArray objectAtIndex:[indexPath row]];
    //给cell设置内容 从之前设置的数据数组中拿数据
    return cell;
}

#pragma mark - UITableViewDelegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    //这里是cell的点击事件 点击了cell便触发这个函数
    NSLog(@"点击了cell");
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

结果:

结果.png

先写到这里,由于UITableView内容还挺多,以后会一一增加,希望对读者有用。


3.17 更新:

很多时候不想空的cell还显示横线,设置UITableView 的 footerView属性可以达到目的:

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

推荐阅读更多精彩内容

  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,115评论 29 470
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 11,985评论 4 60
  • Swift版本点击这里欢迎加入QQ群交流: 594119878最新更新日期:18-09-17 About A cu...
    ylgwhyh阅读 25,242评论 7 249
  • 看到美女,明明心跳。 假模假样,斜眼而过。 看到帅哥,明明心动。 昂首阔步,面红而行。 一张钞票,明知是假。 去买...
    泊宁赵阅读 589评论 8 8
  • 那一年,她才16岁,她的世界很美好,没有什么烦恼,她喜欢简单地依偎在家人的怀抱里,躲在家人的臂膀下。每天的天...
    一尾森琳阅读 369评论 0 0