¿Cómo selecciono programáticamente una UITableView
fila para que
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
se ejecuta? selectRowAtIndexPath
solo resaltará la fila.
¿Cómo selecciono programáticamente una UITableView
fila para que
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
se ejecuta? selectRowAtIndexPath
solo resaltará la fila.
Respuestas:
De la documentación de referencia:
Llamar a este método no hace que el delegado reciba un mensaje
tableView:willSelectRowAtIndexPath:
otableView:didSelectRowAtIndexPath:
mensaje, ni envíaUITableViewSelectionDidChangeNotification
notificaciones a los observadores.
Lo que haría es:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self doSomethingWithRowAtIndexPath:indexPath];
}
Y luego, desde donde quería llamar a selectRowAtIndexPath, en su lugar llama a doSomethingWithRowAtIndexPath. Además de eso, también puede llamar a selectRowAtIndexPath si desea que se realicen los comentarios de la interfaz de usuario.
Como Jaanus dijo:
Llamar a este método (-selectRowAtIndexPath: animated: scrollPosition :) no hace que el delegado reciba una tableView: willSelectRowAtIndexPath: o tableView: didSelectRowAtIndexPath: mensaje, ni enviará notificaciones UITableViewSelectionDidChangeNotification a los observadores.
Entonces solo tienes que llamar al delegate
método tú mismo.
Por ejemplo:
Versión Swift 3:
let indexPath = IndexPath(row: 0, section: 0);
self.tableView.selectRow(at: indexPath, animated: false, scrollPosition: UITableViewScrollPosition.none)
self.tableView(self.tableView, didSelectRowAt: indexPath)
Versión ObjectiveC:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath
animated:YES
scrollPosition:UITableViewScrollPositionNone];
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
Versión Swift 2.3:
let indexPath = NSIndexPath(forRow: 0, inSection: 0);
self.tableView.selectRowAtIndexPath(indexPath, animated: false, scrollPosition: UITableViewScrollPosition.None)
self.tableView(self.tableView, didSelectRowAtIndexPath: indexPath)
SeleccionarRowAtIndexPath de UITableView : animated: scrollPosition: debería hacer el truco.
Simplemente pase UITableViewScrollPositionNone
por scrollPosition y el usuario no verá ningún movimiento.
También deberías poder ejecutar la acción manualmente:
[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]
después de ti, selectRowAtIndexPath:animated:scrollPosition:
así ocurre el resaltado, así como cualquier lógica asociada.
si quieres seleccionar alguna fila esto te ayudará
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[someTableView selectRowAtIndexPath:indexPath
animated:NO
scrollPosition:UITableViewScrollPositionNone];
Esto también resaltará la fila. Luego delegue
[someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];
Solución Swift 3/4/5
Seleccionar fila
let indexPath = IndexPath(row: 0, section: 0)
tblView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
myTableView.delegate?.tableView!(myTableView, didSelectRowAt: indexPath)
DeSelect Row
let deselectIndexPath = IndexPath(row: 7, section: 0)
tblView.deselectRow(at: deselectIndexPath, animated: true)
tblView.delegate?.tableView!(tblView, didDeselectRowAt: indexPath)
Existen dos métodos diferentes para las plataformas iPad y iPhone, por lo que debe implementar ambos:
segue.
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
// Selection handler (for horizontal iPad)
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
// Segue (for iPhone and vertical iPad)
[self performSegueWithIdentifier:"showDetail" sender:self];
Use esta categoría para seleccionar una fila de la tabla y ejecutar un segmento dado después de un retraso.
Llame a esto dentro de su viewDidAppear
método:
[tableViewController delayedSelection:withSegueIdentifier:]
@implementation UITableViewController (TLUtils)
-(void)delayedSelection:(NSIndexPath *)idxPath withSegueIdentifier:(NSString *)segueID {
if (!idxPath) idxPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self performSelector:@selector(selectIndexPath:) withObject:@{@"NSIndexPath": idxPath, @"UIStoryboardSegue": segueID } afterDelay:0];
}
-(void)selectIndexPath:(NSDictionary *)args {
NSIndexPath *idxPath = args[@"NSIndexPath"];
[self.tableView selectRowAtIndexPath:idxPath animated:NO scrollPosition:UITableViewScrollPositionMiddle];
if ([self.tableView.delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)])
[self.tableView.delegate tableView:self.tableView didSelectRowAtIndexPath:idxPath];
[self performSegueWithIdentifier:args[@"UIStoryboardSegue"] sender:self];
}
@end