Comment sélectionner une UITableView
ligne par programme pour que
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
est exécuté? selectRowAtIndexPath
ne mettra en évidence que la ligne.
Comment sélectionner une UITableView
ligne par programme pour que
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
est exécuté? selectRowAtIndexPath
ne mettra en évidence que la ligne.
Réponses:
De la documentation de référence:
L'appel de cette méthode n'entraîne pas la réception d'un message
tableView:willSelectRowAtIndexPath:
ou par le déléguétableView:didSelectRowAtIndexPath:
et n'envoie pas deUITableViewSelectionDidChangeNotification
notifications aux observateurs.
Ce que je ferais, c'est:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self doSomethingWithRowAtIndexPath:indexPath];
}
Et puis, à partir de l'endroit où vous vouliez appeler selectRowAtIndexPath, vous appelez à la place doSomethingWithRowAtIndexPath. En plus de cela, vous pouvez également appeler selectRowAtIndexPath si vous souhaitez que les commentaires de l'interface utilisateur se produisent.
Comme Jaanus l'a dit:
L'appel de cette méthode (-selectRowAtIndexPath: animated: scrollPosition :) n'entraîne pas la réception par le délégué d'une tableView: willSelectRowAtIndexPath: ou tableView: didSelectRowAtIndexPath: message, ni n'envoie de notifications UITableViewSelectionDidChangeNotification aux observateurs.
Il vous suffit donc d'appeler la delegate
méthode vous-même.
Par exemple:
Version 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)
Version ObjectiveC:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath
animated:YES
scrollPosition:UITableViewScrollPositionNone];
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
Version 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)
SelectRowAtIndexPath : animated: scrollPosition: devrait faire l'affaire.
UITableViewScrollPositionNone
Passez simplement pour scrollPosition et l'utilisateur ne verra aucun mouvement.
Vous devriez également pouvoir exécuter manuellement l'action:
[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]
après vous selectRowAtIndexPath:animated:scrollPosition:
, la mise en évidence se produit ainsi que toute logique associée.
si vous voulez sélectionner une ligne cela vous aidera
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[someTableView selectRowAtIndexPath:indexPath
animated:NO
scrollPosition:UITableViewScrollPositionNone];
Cela mettra également en évidence la ligne. Puis déléguez
[someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];
Solution Swift 3/4/5
Sélectionnez une ligne
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)
Il existe deux méthodes différentes pour les plates-formes iPad et iPhone, vous devez donc implémenter les deux:
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];
Utilisez cette catégorie pour sélectionner une ligne de table et exécuter une séquence donnée après un délai.
Appelez ceci dans votre viewDidAppear
méthode:
[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