IOS UITableView的创建及常用协议

<h1> 1.UITableview的创建<h1>

<h6>打开Xcode,创建新工程,在默认的ViewController.h文件中声明属性,例如:定义一个名为tableView的视图对象;

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

@property (nonatomic , retain) UITableView *tableView;

@end


<h6>要实现Tableview必须要签订2个协议,<UITableViewDelegate,UITableViewDataSource>

UITableViewDelegate:数据视图的普通协议,作用是:处理数据视图事件.
UITableViewDataSource:数据视图的数据代理协议,作用是:处理视图的数据代理.

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>

@property (nonatomic , retain) UITableView *tableView;

@end

Tableview 有两个重要的组成部分section和row;
section(部分):可以理解为tableview显示时候的组;
row(行):可以理解为tableview显示时候的行;

TableView创建必须实现签订的协议的2个协议方法

(1) -(NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section;
这个协议的作用是指定每个section返回多少个Row;

(2) -(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
这个协议的作用是指定每个组每个行返回那种TableViewCell(
cell就是TableView显示时候的格子;
)

选择实现协议 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

此协议用来控制每个section 返回cell个数(如不重写该协议默认返回1个section);

//  ViewController.m
//  UITableView
//
//  Created by 黄威 on 16/8/12.
//  Copyright © 2016年 黄威. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    _tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    
    _tableView.delegate = self;
    _tableView.dataSource = self;
    
    //注册cell(TablewViewcell的重用机制需要使用);

    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"reuse"];
    [self.view addSubview:_tableView];
    
    
}

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

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

    return 3;

}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{


    if (section == 0) {
        
        return 3;
        
    }else if(section == 1){
    
        return 2;
        
    }else{
    
        return 1;
    }

}


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"reuse" forIndexPath:indexPath];


    
    return cell;


}

完成以上代码即可完成一个最简单的Tableview的创建;

_tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];

Tableview style 有两种风格
UITableViewStylePlain:普通风格
UITableViewStyleGrouped:分组风格
区别如图:

屏幕快照 2016-08-12 下午8.31.09.png

TableView常用属性

属性名 意思
rowHeigh 行高
separatorStyle 分割线样式
separatorColor 分隔线颜色
tableHeaderView 置顶视图
tableFootView 置底视图

/

/

<h1>UITableView协议

<h6>定义一个数组 arrayData作为数据源;

#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic, retain) UITableView *tableView;
@property (nonatomic, retain) NSMutableArray *arrayData;
@end

在viewController.m文件中初始化数组,并对数组进行赋值操作;

    _arrayData = [NSMutableArray array];
    
    for (int i = 'A'; i < 'Z'; i++) {
         NSMutableArray *arrSmall = [[NSMutableArray alloc]init];
       for (int j = 1; j < 5 ; j++)  {
         NSString *str = [NSString stringWithFormat:@"%c%d",i,j];
          [arrSmall addObject:str]; }
            
            //生成一个2维数组
           [_arrayData addObject:arrSmall];
                                              }

在下面协议方法中设置返回section数量,返回的数量即数据源数组的个数self.arrayData.count;

  • (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView ;

在下面协议方法中设置每个section返回单元格的数量,返回的数量即 [[self.arrayData objectAtIndex:section] count];

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

  return self.arrayData.count;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

    NSInteger numberRow = [[self.arrayData objectAtIndex:section] count];
    
    return numberRow;

}

系统的TableViewCell 默认的样式提供3个属性

属性名 意思
UIImageView *imageView 图片视图
UILabel *textLabel 标题标签
UILabel *detailTextLabel 副标题标签

/
使用系统UITableViewCell 在下面的协议中设置每一行返回的样式及内容;
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;



-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"reuse" forIndexPath:indexPath];

    NSString *str = [NSString stringWithFormat:@"第%ld组---第%ld行",indexPath.section,indexPath.row];

    cell.textLabel.text = str;
    
    return cell;

}

运行模拟器,即可看到如下的结果


屏幕快照 2016-08-13 上午10.52.04.png

可以在下面协议中设置返回单元格的高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

例如:

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  
  return 150;
}

实际效果如下,可以看到单元格的高度变为150;


屏幕快照 2016-08-13 上午10.59.10.png

与之类似的还有以下两个协议,用来设置单元格分组头部和尾部的高度

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return 40;
}

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

    return 20;
}

设置单元格头部和尾部的标题

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

     return @"这里是头部";

}
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
    
     return @"这里是尾部";
    
}

效果如下:


屏幕快照 2016-08-13 上午11.10.58.png

设置单元格头部尾部视图

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

    UIImage *image = [UIImage imageNamed:@"1.png"];
    
    UIImageView *imageView = [[UIImageView alloc]initWithImage:image];
    
    return imageView;

}

-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

    UIImage *image = [UIImage imageNamed:@"3.png"];
    
    UIImageView *imageView = [[UIImageView alloc]initWithImage:image];
    
    return imageView;

}

<h1>TableView编辑功能

<h6>增加编辑和导航按钮属性

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>

@property (nonatomic, retain) UITableView *tableView;

@property (nonatomic, retain) NSMutableArray *arrayData;

//添加编辑和导航按钮;

@property (nonatomic, retain) UIBarButtonItem *btnEdit;
@property (nonatomic, retain) UIBarButtonItem *btnFinish;
@property (nonatomic, retain) UIBarButtonItem *btnDelete;
//设置编辑状态;
@property (nonatomic, assign) BOOL isEdit;

@end

在AppDelegate.m中添加导航控制器

//  AppDelegate.m
//  UITableView
//
//  Created by 黄威 on 16/8/12.
//  Copyright © 2016年 黄威. All rights reserved.
//

#import "AppDelegate.h"
#import "ViewController.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    
    ViewController *vc = [[ViewController alloc]init];
    
    UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:vc];
    
    self.window.rootViewController = nav;
    
    nav.title = @"TableView编辑";

    return YES;
}

开启TableView 编辑状态

[_tableView setEditing:YES];

编写3个编辑按钮并写出对应的点击事件

- (void)createNavButton{

    _btnEdit = [[UIBarButtonItem alloc]initWithTitle:@"编辑" style:UIBarButtonItemStylePlain target:self action:@selector(edit)];
    _btnFinish = [[UIBarButtonItem alloc]initWithTitle:@"完成" style:UIBarButtonItemStylePlain target:self action:@selector(finish)];
     _btnDelete = [[UIBarButtonItem alloc]initWithTitle:@"删除" style:UIBarButtonItemStylePlain target:self action:@selector(delete)];
    self.navigationItem.rightBarButtonItem = _btnEdit;
}

- (void)edit{

    _isEdit = YES;
    self.navigationItem.rightBarButtonItem = _btnFinish;
    [_tableView setEditing:YES];
    self.navigationItem.leftBarButtonItem = _btnDelete;

}

- (void)finish{

    _isEdit = NO;
    [_tableView setEditing:NO];
    self.navigationItem.leftBarButtonItem = nil;
    self.navigationItem.rightBarButtonItem = _btnEdit;

}

//单元格显示效果协议 默认为删除

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{

    //删除风格 UITableViewCellEditingStyleDelete;
    //None风格 UITableViewCellEditingStyleNone;
    //插入风格 UITableViewCellEditingStyleInsert;
    //多选风格 UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;
//例如 :
    
    if (indexPath.section == 0){
        return UITableViewCellEditingStyleDelete;
    }
    else
        return UITableViewCellEditingStyleInsert;
    
}

//当手指在屏幕移动时可以显示编辑状态

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{

//删除数据源对应数据
[_arrayData removeObjectAtIndex:indexPath.section];
//数据源更新
[tableView reloadData];
NSLog(@"delete");

}

//选中单元格时候调用此协议方法

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  NSLog(@"选中单元格%ld,%ld",indexPath.section,indexPath.row);
}

//取消选中时调用此协议方法

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{

    NSLog(@"取消选中单元格%ld,%ld",indexPath.section,indexPath.row);

}

复习备忘;

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

推荐阅读更多精彩内容