码迷,mamicode.com
首页 > 其他好文 > 详细

UITableView 点击展开的实现

时间:2015-10-16 11:31:43      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

推介看下这里的 内容  http://www.cnblogs.com/kenshincui/p/3931948.html

IOS8 above

UITabliViewCell 利用 autolayout 实现的,这里就不多说了

主要代码

1.

    self.tableView.rowHeight = UITableViewAutomaticDimension;

    self.tableView.estimatedRowHeight = 70;

2.

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

{

    NSLog(@"heightForRowAtIndexPath=:%ld",indexPath.row);

    if( indexPath.row == selectIndex )

    {

        if( !isOpened )

            return 130;

        

        return UITableViewAutomaticDimension;

    }

    else

    {

        return 130;

    } 

}

 

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

{

    selectIndex = indexPath.row;

    isOpened = !isOpened;

    [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

}

UITableView 点击展开的实现

标签:

原文地址:http://www.cnblogs.com/rollrock/p/4884705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!