#pragma mark -
#pragma mark - METODOS DELEGADOS (UITableViewDelegate)
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//Desactivar tabla para evitar double tap en la celda
[self performSelector:@selector(activarTablaNuevamente) withObject:nil afterDelay:1.0];
self.myTableView.userInteractionEnabled = NO;
}
#pragma mark -
#pragma mark - ACTIVAR TABLA
-(void)activarTablaNuevamente
{
self.myTableView.userInteractionEnabled = YES;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.