首页 > 其他 > 详细

一个静态UITabelView的解决方案----CTStaticTableView

时间:2015-06-12 17:11:58      阅读:223      评论:0      收藏:0      [点我收藏+]

CTStaticTableView

这是一个用代码封装静态TableView的方式。

你可以用xib初始化CTStaticTableView,也可以用代码:

    self.tableView = [[CTStaticTableView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];
    [self.view addSubview:self.tableView];

然后可以合成你的static table view cell
需要两个参数:一个是TableViewCell对象,一个是他的高度。

    CTStaticTableViewCell *fristStaticCell = [CTStaticTableViewCell staticTableViewCellWithCell:[DemoTableViewFristCell fristCell] height:50];
    CTStaticTableViewCell *secendStaticCell = [CTStaticTableViewCell staticTableViewCellWithCell:[DemoTableViewSecendCell secendCell] height:80];

拼起来吧

    [self.tableView showStaticCells:@[fristStaticCell, secendStaticCell]];
    //或者
    [self.tableView showStaticCells:@[fristStaticCell, secendStaticCell] withDidSelectRowDelegate:self];
    //或者
    [self.tableView showStaticCells:@[fristStaticCell, secendStaticCell] withDidSelectRowBlock:^(NSIndexPath *indexPath) {
        NSLog(@"taptaptap");
    }];

没了,请看demo代码。

https://github.com/chentoo/CTStaticTableView

一个静态UITabelView的解决方案----CTStaticTableView

原文:http://blog.csdn.net/chentoo/article/details/46473407

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!