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


    //默认选中某个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];

                    }

  • 相关阅读:
    jquery在线手册
    bootstrap学习之路
    实用的cmd命令
    在源代码中插入防止盗版代码片段的方式
    常用的正则表达式
    仿站步骤
    thinkphp 公用函数
    php switch判断一个数所在的范围
    ps学习教程
    九度oj 题目1185:特殊排序
  • 原文地址:https://www.cnblogs.com/sunfuyou/p/6290680.html
Copyright © 2020-2023  润新知