码迷,mamicode.com
首页 > 移动开发 > 详细

iOS设置UITableView中Cell被默认选中后怎么触发didselect事件

时间:2017-01-16 19:49:27      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:delegate   scroll   select   tor   osi   pos   result   row   cto   

//默认选中某个cell

[self.searchResultTV selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionNone];

               

//实现该cell的didSelectRowAtIndexPath方法

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];

               

if ([self.searchResultTV.delegate respondsToSelector:@selector(tableView:willSelectRowAtIndexPath:)]) {

                    [self.searchResultTV.delegate tableView:self.searchResultTV willSelectRowAtIndexPath:indexPath];

                }

               

[self.searchResultTV selectRowAtIndexPath:indexPath animated:YES scrollPosition: UITableViewScrollPositionNone];

               

if ([self.searchResultTV.delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)]) {

                    [self.searchResultTV.delegate tableView:self.searchResultTV didSelectRowAtIndexPath:indexPath];

                }

 

iOS设置UITableView中Cell被默认选中后怎么触发didselect事件

标签:delegate   scroll   select   tor   osi   pos   result   row   cto   

原文地址:http://www.cnblogs.com/sunfuyou/p/6290680.html

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