Bagaimana cara saya memilih UITableView
baris programatis sehingga
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
dieksekusi? selectRowAtIndexPath
hanya akan menyorot baris tersebut.
iphone
objective-c
cocoa-touch
uitableview
4thSpace
sumber
sumber
Jawaban:
Dari dokumentasi referensi:
Yang akan saya lakukan adalah:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [self doSomethingWithRowAtIndexPath:indexPath]; }
Dan kemudian, dari tempat Anda ingin memanggil selectRowAtIndexPath, Anda memanggil doSomethingWithRowAtIndexPath. Selain itu, Anda juga dapat memanggil selectRowAtIndexPath jika Anda ingin umpan balik UI terjadi.
sumber
Seperti yang dikatakan Jaanus:
Jadi, Anda hanya perlu memanggil
delegate
metode itu sendiri.Sebagai contoh:
Versi 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 ObjectiveC:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; [self.tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; [self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
Versi 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)
sumber
UITableView ini selectRowAtIndexPath: animasi: scrollPosition: harus melakukan trik.
Cukup berikan
UITableViewScrollPositionNone
scrollPosition dan pengguna tidak akan melihat gerakan apa pun.Anda juga harus dapat menjalankan tindakan secara manual:
[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]
setelah Anda
selectRowAtIndexPath:animated:scrollPosition:
jadi sorotan terjadi serta logika terkait.sumber
jika Anda ingin memilih beberapa baris, ini akan membantu Anda
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; [someTableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
Ini juga akan menyoroti baris tersebut. Kemudian delegasikan
sumber
Solusi Cepat 3/4/5
Pilih Baris
let indexPath = IndexPath(row: 0, section: 0) tblView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom) myTableView.delegate?.tableView!(myTableView, didSelectRowAt: indexPath)
Batalkan Pilihan Baris
let deselectIndexPath = IndexPath(row: 7, section: 0) tblView.deselectRow(at: deselectIndexPath, animated: true) tblView.delegate?.tableView!(tblView, didDeselectRowAt: indexPath)
sumber
Ada dua metode berbeda untuk platform iPad dan iPhone, jadi Anda perlu menerapkan keduanya:
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];
sumber
Gunakan kategori ini untuk memilih baris tabel dan menjalankan urutan tertentu setelah penundaan.
Panggil ini dalam
viewDidAppear
metode Anda :[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
sumber