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

uiTableView 单选效果

时间:2014-08-04 20:56:37      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:des   for   ar   c   table   ui   view   select   

-(void)tableView:(UITableView *)tableView

didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    [tableView deselectRowAtIndexPath:indexPath

                             animated:YES];

    

    NSArray* nsArryUITableViewCell=[tableView visibleCells];

    //单选效果

    for (UITableViewCell* uiTableViewCell in nsArryUITableViewCell)

    {

        if (uiTableViewCell.selected==YES)

        {

            uiTableViewCell.imageView.image=[UIImage imageNamed:@"dot_12"];

        uiTableViewCell.selected=!uiTableViewCell.selected;

 

        }

    }

    

    UITableViewCell* uiTableViewCell=[tableView cellForRowAtIndexPath:indexPath];

    if (uiTableViewCell.selected)

    {

        uiTableViewCell.imageView.image=[UIImage imageNamed:@"dot_12"];

        uiTableViewCell.selected=!uiTableViewCell.selected;

 

    }

    else

    {

        uiTableViewCell.imageView.image=[UIImage imageNamed:@"dot001_on"];

        uiTableViewCell.selected=!uiTableViewCell.selected;

 

    }

}

uiTableView 单选效果,布布扣,bubuko.com

uiTableView 单选效果

标签:des   for   ar   c   table   ui   view   select   

原文地址:http://www.cnblogs.com/louyizhidu/p/3890600.html

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