Как программно выбрать строку UITableView
, чтобы
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
выполняется? selectRowAtIndexPath
будет выделять только строку.
Как программно выбрать строку UITableView
, чтобы
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
выполняется? selectRowAtIndexPath
будет выделять только строку.
Вызов этого метода не вызывает делегировать tableView: willSelectRowAtIndexPath: или Tableview: didSelectRowAtIndexPath: сообщение, и оно не будет отправлено UITableViewSelectionDidChangeNotification уведомления наблюдателям.
Что бы я сделал:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self doSomethingWithRowAtIndexPath:indexPath];
}
И затем, откуда вы хотите вызвать selectRowAtIndexPath, вместо этого вы вызываете doSomethingWithRowAtIndexPath. Кроме того, вы также можете вызвать selectRowAtIndexPath, если вы хотите, чтобы обратная связь с пользовательским интерфейсом произошла.
Как сказал Яанус:
Вызов этого метода (-selectRowAtIndexPath: анимированный: scrollPosition:) не заставляет делегата получать tableView: willSelectRowAtIndexPath: или tableView: didSelectRowAtIndexPath: сообщение, и оно не будет отправлено Уведомления UITableViewSelectionDidChangeNotification для наблюдателей.
Итак, вам просто нужно вызвать метод delegate
самостоятельно.
Например:
Версия 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)
Версия ObjectiveC:
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath
animated:YES
scrollPosition:UITableViewScrollPositionNone];
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
версия 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)
UITableView selectRowAtIndexPath: анимированный: scrollPosition: должен сделать трюк.
Просто пройдите UITableViewScrollPositionNone
для scrollPosition, и пользователь не увидит никакого движения.
Вы также можете запустить действие вручную:
[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]
после selectRowAtIndexPath:animated:scrollPosition:
, чтобы выделить событие, а также любую связанную с ним логику.
если вы хотите выбрать некоторую строку, это поможет вам
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[someTableView selectRowAtIndexPath:indexPath
animated:NO
scrollPosition:UITableViewScrollPositionNone];
Это также выделит строку. Затем делегируйте
[someTableView.delegate someTableView didSelectRowAtIndexPath:indexPath];
Решение Swift 3.0
Выберите строку
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)
Используйте эту категорию, чтобы выбрать строку таблицы и выполнить заданный сеанс после задержки.
Вызовите это в рамках метода viewDidAppear
:
[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
Существует два разных метода для платформ iPad и iPhone, поэтому вам нужно реализовать оба:
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];