UITableView实现双击事件的方法

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

{  

//如果两次点击的时间间隔小于1秒,则断定为双击事件

NSUInteger curr = [[NSDate datetimeIntervalSince1970];

if (curr-taptime<1) {

[self doubleTap];

}

taptime = curr;

}

你可能感兴趣的:(UITableView实现双击事件的方法)