美文网首页
tableViewcell默认第一个选中

tableViewcell默认第一个选中

作者: 94bu1yang | 来源:发表于2016-05-18 16:34 被阅读0次

    [self.tableView reloadData];

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

    [self tableView:self.tableView didSelectRowAtIndexPath:index]; 

    调用系统的方法
    加上之前的变色,有一点
    if(indexPath.row!=0) {

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

    [selftableView:_leftTableViewdidDeselectRowAtIndexPath:index];

    }

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

    {

    UITableViewCell*cell = [_leftTableViewcellForRowAtIndexPath:indexPath];

    cell.backgroundColor= [UIColor xxxxxxx];

    rightDataSource=rightDataSource=_rightTableSource[indexPath.row][@"title"];

    [self.tableView reloadData];

    }

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

    {

    UITableViewCell*cell = [self.tableView cellForRowAtIndexPath:indexPath];

    cell.backgroundColor= [UIColor xxxxxxx];

    }

    相关文章

      网友评论

          本文标题:tableViewcell默认第一个选中

          本文链接:https://www.haomeiwen.com/subject/thywrttx.html