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

UITableView选择某一行常用做法

时间:2015-03-18 10:34:49      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:uitableview   ios开发   高性能   uitableviewcell   苹果   

#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSArray *visibleIndexPaths = [tableView indexPathsForVisibleRows];
    for (NSIndexPath *ip in visibleIndexPaths) {
        UITableViewCell *clearCell = [tableView cellForRowAtIndexPath:ip];
        [clearCell setAccessoryType:UITableViewCellAccessoryNone];
    }
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    [cell setAccessoryType:UITableViewCellAccessoryCheckmark];
    

    [self.delegate chooserSelectedFriend:[self.friendList objectAtIndex:indexPath.row]];
    [self.navigationController popViewControllerAnimated:YES];
}

UITableView选择某一行常用做法

标签:uitableview   ios开发   高性能   uitableviewcell   苹果   

原文地址:http://blog.csdn.net/marvindev/article/details/44406631

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