博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITableView 小记
阅读量:5119 次
发布时间:2019-06-13

本文共 2503 字,大约阅读时间需要 8 分钟。

1 UITableViewController 包含了UITabelView. UITableViewController 需要实现两个  delegate ,分别是  UITableViewDelegate 和  UITableViewDataSource.

2 UITableView对象的 delegate要设置为 UITableViewController对象.

UITableViewDelegate方法介

//Sections  个数- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView   {      return 2;  }
//对应的section有多少个元素,也就是多少行 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section   {      if(0 == section)       return 10;      else       return3;}
//row 的高度- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;//NSIndexPath 包含了section/row信息
 

// 返回指定的row 的cell 在这个地方来定制各种个性化的 cell元素

//主标题 cell.textLabel  副标题cell.detailTextLabel   左边图标cell.imageView.  图标cell.accessoryType  contentView cell定制试图

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

 

  // 返回指定的 section 的header的高度             

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

 

 //  返回指定的section 的 header  的 title,如果这个section header 有返回view,那么title就不起作用    

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

         

// 返回指定的 section header 的view,如果没有,这个函数可以不返回view  

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

                 

//当用户选中某个行的cell的时候,回调用这个。但是首先,必须设置tableview的一个属性为可以select // tableView.allowsSelection=YES tableView.allowsSelection=NO 拒绝选中响应事件 //cell.selectionStyle=UITableViewCellSelectionStyleBlue 选中后cell风格(UITableViewCellSelectionStyleNone, 选中不变色)

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

 

tableview  每行之间的 分割线 (UITableViewCellSeparatorStyleNone  不用显示分割线)

self.tableView.separatorStyle=UITableViewCellSeparatorStyleSingleLine       

 

//用户点击cell 右边的 箭头(如果有的话)

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

 

 //设置tableview 可以被编辑

[tableView setEditing:YES animated:YES];  

       
//返回当前cell  要执行的是哪种编辑 - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
   return UITableViewCellEditingStyleDelete; }
            

//  通知告诉用户编辑了 哪个cell

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

 

             

如何获得 某一行的cell对象 - (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath; 文章整理自:

转载于:https://www.cnblogs.com/zhidao-chen/archive/2013/05/13/3076000.html

你可能感兴趣的文章
Visual Studio基于CMake配置opencv1.0.0、opencv2.2
查看>>
遍历Map对象
查看>>
MySQL索引背后的数据结构及算法原理
查看>>
#Leetcode# 209. Minimum Size Subarray Sum
查看>>
SDN第四次作业
查看>>
DM8168 DVRRDK软件框架研究
查看>>
django迁移数据库错误
查看>>
yii 跳转页面
查看>>
洛谷 1449——后缀表达式(线性数据结构)
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
Dirichlet分布深入理解
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
获得进程可执行文件的路径: GetModuleFileNameEx, GetProcessImageFileName, QueryFullProcessImageName...
查看>>
证件照(1寸2寸)拍摄处理知识汇总
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
Python入门-函数
查看>>
[HDU5727]Necklace(二分图最大匹配,枚举)
查看>>