1. 程式人生 > >點選tableView空白處隱藏鍵盤

點選tableView空白處隱藏鍵盤

1.點選tableView空白處隱藏鍵盤

 

  UITapGestureRecognizer *tableViewGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tableViewTouchInSide)];

    tableViewGesture.numberOfTapsRequired = 1;//幾個手指點選

    tableViewGesture.cancelsTouchesInView = NO;//是否取消點選處的其他action

    [self.tableView addGestureRecognizer:tableViewGesture];

    

- (void)tableViewTouchInSide{

   

    [self.view endEditing:YES];

}