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

让cell默认选中第一行

时间:2014-11-27 18:07:28      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:io   color   os   sp   for   strong   on   bs   cti   

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

{

    // 自定义cell点击背景

    cell.selectedBackgroundView =

    [[UIViewalloc] initWithFrame:cell.frame];

    cell.selectedBackgroundView.backgroundColor = RGBCOLOR(194, 194, 194);

 

 

    

// 默认选中第一行 只执行一次(否则有BUG)

    if (!isRuned) {

        NSIndexPath *firstPath = [NSIndexPathindexPathForRow:0inSection:0];

        [m_tableViewselectRowAtIndexPath:firstPath animated:YESscrollPosition:UITableViewScrollPositionTop];

        

        isRuned = YES;

    }

让cell默认选中第一行

标签:io   color   os   sp   for   strong   on   bs   cti   

原文地址:http://www.cnblogs.com/liman1990/p/4126601.html

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