Selecionar linha de exibição de tablatura programaticamente

135

Como seleciono programaticamente uma UITableViewlinha para que

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

é executado? selectRowAtIndexPathdestacará apenas a linha.

4thSpace
fonte
Encontrei o mesmo problema e refinei o link: stackoverflow.com/questions/5324501/… Espero que seja útil para você.
michael

Respostas:

109

Da documentação de referência:

A chamada desse método não faz com que o delegado receba uma mensagem tableView:willSelectRowAtIndexPath:ou tableView:didSelectRowAtIndexPath:nem envia UITableViewSelectionDidChangeNotificationnotificações aos observadores.

O que eu faria é:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [self doSomethingWithRowAtIndexPath:indexPath];
}

E então, de onde você deseja chamar selectRowAtIndexPath, chame doSomethingWithRowAtIndexPath. Além disso, você também pode chamar selectRowAtIndexPath se desejar que o feedback da interface do usuário ocorra.

Jaanus
fonte
4
Ou, quando você seleciona a linha programaticamente, pode chamar tableView: didSelectRowAtIndexPath: yourself (na classe que você conectou como delegado).
Kendall Helmstetter Gelner
3
Este método parece um hack para mim, ele fez o trabalho, mas acho que deveria haver uma maneira melhor de fazê-lo.
Tapan Thaker 26/10/12
1
Eu realmente não acho que você precise criar uma chamada "doSomethingWithRowAtIndexPath", você não pode simplesmente chamar o método delegate e passar os argumentos necessários para executar a lógica didSelect no local em que implementou o método delegate?
ImpactZero
111

Como Jaanus disse:

Chamar esse método (-selectRowAtIndexPath: animated: scrollPosition :) não faz com que o delegado receba uma mensagem tableView: willSelectRowAtIndexPath: ou tableView: didSelectRowAtIndexPath:, nem enviará notificações de UITableViewSelectionDidChangeNotification aos observadores.

Então você só precisa chamar o delegatemétodo.

Por exemplo:

Versão 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)

Versão ObjectiveC:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath 
                            animated:YES 
                      scrollPosition:UITableViewScrollPositionNone];
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];

Versão 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)
dulgan
fonte
63

O selectRowAtIndexPath do UITableView : animated: scrollPosition: deve fazer o truque.

Basta passar UITableViewScrollPositionNonepara scrollPosition e o usuário não verá nenhum movimento.


Você também deve poder executar manualmente a ação:

[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]

depois de você selectRowAtIndexPath:animated:scrollPosition:, o destaque acontece, assim como qualquer lógica associada.

anq
fonte
Desculpe, é isso que estou usando. Coloquei acidentalmente scrollToRowAtIndexPath. Eu atualizei a pergunta. scrollToRowAtIndexPath destaca apenas a célula.
4thSpace
2
Sim, me desculpe. Ele diz que não disparará o didSelectRowAtIndexPath ali no link de documentos que eu postei. Eu preciso aprender a ler.
ANQ
@anq: Muito obrigado! Isso me ajuda quando eu chamo o didSelectRowAtIndexPath: indexPath na célula personalizada.
Bentley
21

se você quiser selecionar alguma linha, isso ajudará você

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[someTableView selectRowAtIndexPath:indexPath 
                           animated:NO 
                     scrollPosition:UITableViewScrollPositionNone];

Isso também destacará a linha. Em seguida, delegue

 [someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];
Nazir
fonte
18

Solução Swift 3/4/5

Selecionar linha

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)
Sourabh Sharma
fonte
Para mim, adicionar '.delegate?' foi a chave. (Swift 4.5)
KoreanXcodeWorker
4

Existem dois métodos diferentes para plataformas iPad e iPhone, então você precisa implementar os dois:

  • manipulador de seleção e
  • 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];
Alexander Volkov
fonte
3

Use esta categoria para selecionar uma linha da tabela e executar uma determinada sequência após um atraso.
Chame isso dentro do seu viewDidAppearmé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
Jonathan Kolyer
fonte
2
A questão não tinha nada a ver com segues.
Delete_user 26/09/12
Sim, sobre nada em sua resposta está relacionada com a questão
dulgan
2
Aprecie esta resposta. Isso funciona perfeitamente se o usuário deseja obter o mesmo comportamento, mas está usando storyboards.
Bijoy Thangaraj