加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

UITableView详细用法,UITableView指南,UITableView详细教程

(2010-12-02 10:39:30)
标签:

uitableview

详细用法

指南

详细教程

it

分类: iphone开发

要转载请表明链接地址:http://hi.baidu.com/makaymose/

作者:Amor Yin(makaymose)

UITableView是一个很强大的控件,在我们iphone开发过程中会经常用到。

下面我做以下简单介绍

UITableView有一个基本元素的索引NSIndexPath,你可以通过索引NSIndexPath找到‍UITableView下面的子元素只要这个方法

 

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

   //在这个方法里你可以根据NSIndexPath判断相应的元素,然后做处理

例如:

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

if(indexPath.section == 5 && indexPath.row ==2)return;

UITableView的每一个子元素(Entity)称为UITableViewCellUITableViewCell由下面这个方法初始化

 

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

//这个方法是必需的,他是产生UITableView内容的必须载体

例如:

 

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

{//因为UITableView由很好的内存控制机制,他每次只加载一屏幕的cell(7个左右),当用户触摸移动时,动态加载新产生的cell

static NSString *RootViewControllerCell =@"HelpViewControllerCell";//产生一个静态标识

UITableViewCell* cell =(UITableViewCell*)[tableViewdequeueReusableCellWithIdentifier:RootViewControllerCell];//标记新产生的cell

if(cell==nil) //如果cell不为空标识cell还没有被释放,还在屏幕中显示

{

cell =[[[UITableViewCellalloc]initWithStyle:UITableViewCellSeparatorStyleSingleLinereuseIdentifier:RootViewControllerCell]autorelease];

}

return cell;

 

UITableViewCell通过NSIndexPath索引,正如上面所看到的,NSIndexPath索引由两个属性sectionrow

section通常就是我们所谓的段,row所谓的段内的行

我们可以通过下面这个方法返回你想要在UITableView中显示段数

 

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; //通常情况下我们看到的都是一段,左移这个方法不是必须的

我们可以通过下面这个方法返回你想要在UITableView中的某一段中显示的行数

 

- (NSInteger)tableView:(UITableView *)tView numberOfRowsInSection:(NSInteger)section;//通常情况下是一段,所以不必判断段数

假如您有很多段,而且每一个段的显示行数还不一样,你就要通过上面的方法精确控制,例如:

 

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

      if(section == 0return 1;

      if(section == 1return 1;

   if(section == 2return 8;

   if(section == 3return 1;

   if(section == 4 || section ==5)   return 3;

   if(section == 6)return 4;

   return0;

}

这个方法时必须的。

另外我们可以通过下面这个方法精确控制某一行的高度

 

 

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

 

 

   if(indexPath.section == 0 && indexPath.row ==0)    return80;

   return 40.0;

}

 

另外我们可以通过下面这个方法精确控制某一段的高度

 

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

{

   if (section == 0)return60.0;

   return40.0;

}

另外我们还可以通过下面这个方法精确控制某一段的标题和视图

 

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

 

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

这两个方法鄙视必须的,我就不作介绍。

拥有以上的及格方法你就可以完成超炫的UITableView视图了。前提是要活灵活用,还有其他几个常用的控件,这里就不在写了,需要的可以留言交流。

我的新浪博客地址:http://blog.sina.com.cn/bbsme

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有