Wybierz programowo wiersz widoku tabeli

135

Jak programowo wybrać UITableViewwiersz, aby

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

zostanie stracony? selectRowAtIndexPathpodświetli tylko wiersz.

4thSpace
źródło
Napotkałem ten sam problem i po prostu dobrze link: stackoverflow.com/questions/5324501/ ... Mam nadzieję, że będzie to dla Ciebie pomocne.
michael

Odpowiedzi:

109

Z dokumentacji referencyjnej:

Wywołanie tej metody nie powoduje, że delegat otrzymuje wiadomość tableView:willSelectRowAtIndexPath:lub tableView:didSelectRowAtIndexPath:wiadomość, ani nie wysyła UITableViewSelectionDidChangeNotificationpowiadomień do obserwatorów.

Co bym zrobił to:

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

Następnie, z miejsca, w którym chciałeś wywołać metodę selectRowAtIndexPath, zamiast tego wywołujesz metodę doSomethingWithRowAtIndexPath. Ponadto możesz również wywołać metodę selectRowAtIndexPath, jeśli chcesz, aby informacje zwrotne dotyczące interfejsu użytkownika były realizowane.

Jaanus
źródło
4
Lub gdy wybierzesz wiersz programowo, możesz wywołać tableView: didSelectRowAtIndexPath: yourself (w klasie, którą podłączyłeś jako delegat).
Kendall Helmstetter Gelner
3
Ta metoda wydaje mi się hackem, wykonała swoją pracę, ale myślę, że powinien być lepszy sposób na zrobienie tego.
Tapan Thaker
1
Wydaje mi się, że nie trzeba tworzyć wywołania „doSomethingWithRowAtIndexPath”, czy nie można po prostu wywołać metody delegata i przekazać argumenty potrzebne do wykonania logiki didSelect z miejsca, w którym zaimplementowano metodę delegata?
ImpactZero
111

Jak powiedział Jaanus:

Wywołanie tej metody (-selectRowAtIndexPath: animated: scrollPosition :) nie powoduje, że delegat odbiera tableView: willSelectRowAtIndexPath: lub tableView: didSelectRowAtIndexPath: message, ani nie wysyła powiadomień UITableViewSelectionDidChangeNotification do obserwatorów.

Musisz więc delegatesamemu wywołać metodę.

Na przykład:

Wersja 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)

Wersja ObjectiveC:

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

Wersja 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
źródło
63

UITableView selectRowAtIndexPath: animated: scrollPosition: powinno załatwić sprawę .

Po prostu przejdź UITableViewScrollPositionNonedo scrollPosition, a użytkownik nie zobaczy żadnego ruchu.


Powinieneś także móc ręcznie uruchomić akcję:

[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]

po tobie, selectRowAtIndexPath:animated:scrollPosition:więc dzieje się podświetlenie, a także związana z nim logika.

anq
źródło
Przepraszam, właśnie tego używam. Przypadkowo umieściłem scrollToRowAtIndexPath. Zaktualizowałem pytanie. scrollToRowAtIndexPath podświetla tylko komórkę.
4thSpace,
2
Tak, przepraszam. Mówi, że nie uruchomi się didSelectRowAtIndexPath w linku do dokumentów, który opublikowałem. Muszę się nauczyć czytać.
anq
@anq: Bardzo dziękuję! Pomaga mi, gdy wywołuję didSelectRowAtIndexPath: indexPath w komórce niestandardowej.
Bentley,
21

jeśli chcesz wybrać wiersz, to ci pomoże

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

Spowoduje to również wyróżnienie wiersza. Następnie deleguj

 [someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];
Nazir
źródło
18

Szybkie rozwiązanie 3/4/5

Wybierz wiersz

let indexPath = IndexPath(row: 0, section: 0)
tblView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
myTableView.delegate?.tableView!(myTableView, didSelectRowAt: indexPath)

Odznacz wiersz

let deselectIndexPath = IndexPath(row: 7, section: 0)
tblView.deselectRow(at: deselectIndexPath, animated: true)
tblView.delegate?.tableView!(tblView, didDeselectRowAt: indexPath)
Sourabh Sharma
źródło
Dla mnie dodanie „.delegate?” był klucz. (Swift 4.5)
KoreanXcodeWorker,
4

Istnieją dwie różne metody dla platform iPad i iPhone, więc musisz wdrożyć obie:

  • program obsługi wyboru i
  • 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
źródło
3

Użyj tej kategorii, aby wybrać wiersz tabeli i wykonać określoną ścieżkę po opóźnieniu.
Wywołaj to w ramach swojej viewDidAppearmetody:

[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
źródło
2
Pytanie nie miało nic wspólnego z wypływami.
deleted_user
Tak, o nic w twojej odpowiedzi nie ma związku z pytaniem
dulgan
2
Doceń tę odpowiedź. Działa to doskonale, jeśli użytkownik chce osiągnąć to samo zachowanie, ale używa scenorysów.
Bijoy Thangaraj