美文网首页
一个简单的TableView

一个简单的TableView

作者: 嘉09 | 来源:发表于2018-01-29 00:03 被阅读29次

    任务

    一个最简单的TableView Demo,用以显示姓名,点击item,弹出一个姓名的提示。

    相关概念

    1、UITableView:继承自UIScrollView,与之相关有两个协议:UITableViewDelegate协议和UITableViewDataSource协议。 

    它可以被分为多个,每个段包含单行或多行。 

    而其中的每一行被称为单元(UITableViewCell)。

    2、协议:是类要实现的一系列方法等列表。

    @protocol SomeProtocol[methoddeclarations]@end

    1

    2

    3

    3、数据源的两个关键方法 

    当表视图需要显示数据时,它需要先知道两件事:有多少行需要显示;每行要显示什么内容。 

    而这两个问题可以用数据源的两个方法来回答:

    -(NSInteger)numberOfRowsInSection:(NSInteger)section-(UITableViewCell*)cellForRowAtIndexPath:(NSIndexPath*)indexPath

    1

    2

    4、委托协议的一个关键方法 

    当我们选中了一个单元,表视图会和它的委托通信,告知某一单元被选中(被点击),下面的方法会被调用。

    -(void)tableView:(UITableView*)tableView    didSelectRowAtIndexPath:(NSIndexPath*)indexPath {    }

    1

    2

    3

    4

    行动

    1、新建一个项目,名称为SimpleTableView。 

    2、storyboard中加入一个表视图 

    在object library中搜索Table View并将其拖拽到主视图中。在attributes inspector中将prototype cells改为1 

    3、设置单元格的标识符 

    这个标识符设置的目的是让这个单元格(Cell)能够被重用。见上图,设为NameIdentifier。

    4、可以编码了 

    1) ViewController.h 加入数据源和视图委托协议

    @interfaceViewController:UIViewController

    1

    2

    2) ViewController.m 进行类的扩展,加入姓名数组

    @interfaceViewController() {NSArray* data;}@end

    1

    2

    3

    4

    5

    6

    3) 姓名数组初始化

    - (void)viewDidLoad {    [super viewDidLoad];    //Doanyadditional setupafterloading theview, typicallyfroma nib.    data = @[@"张飞",@"赵云",@"刘备",@"关羽",@"马操",@"孔明",            @"魏延",@"姜维",@"刘禅"];}

    1

    2

    3

    4

    5

    6

    4) 实现两个数据源的核心方法

    - (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section {returndata.count;}- (UITableViewCell*)tableView:(UITableView*)tableView        cellForRowAtIndexPath:(NSIndexPath*)indexPath {staticNSString*CellIdentifier = @"NameIdentifier";UITableViewCell*cell = [tableView                            dequeueReusableCellWithIdentifier:CellIdentifier                            forIndexPath:indexPath];NSString*name = data[indexPath.row];    cell.textLabel.text= name;returncell;}

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    5) 实现视图委托的核心方法 

    选中一个item后,显示一个提示信息

    - (void)tableView:(UITableView*)tableViewdidSelectRowAtIndexPath:(NSIndexPath*)indexPath {// 声明一个UIAlertViewUIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"提示"message:data[indexPath.row] delegate:selfcancelButtonTitle:nilotherButtonTitles:nil,nil];// 显示 UIAlertView[alert show];// 添加延迟时间为 1.0 秒 然后执行 dismiss: 方法[selfperformSelector:@selector(dismiss:) withObject:alert afterDelay:1.0];}- (void)dismiss:(UIAlertView *)alert{// 此处即相当于点击了 cancel 按钮[alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES];}

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    5、最后一件最重要的事 

    ViewControll中的数据源和视图委托两个协议要与表视图相关联起来,这里依然是一个拖拽操作(忍不住要吐槽)。 

    在storyboard中,右击Table View,然后将outlet中的datasource和dalegate拖拽到View Controll中。如下图。 

    运行到效果如下: 

    相关文章

      网友评论

          本文标题:一个简单的TableView

          本文链接:https://www.haomeiwen.com/subject/bhetzxtx.html