Answers:
调用此方法不会导致委托接收到
tableView:willSelectRowAtIndexPath:
或tableView:didSelectRowAtIndexPath:
消息,也不会UITableViewSelectionDidChangeNotification
向观察者发送通知。
我要做的是:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self doSomethingWithRowAtIndexPath:indexPath];
}
然后,从您要调用selectRowAtIndexPath的位置,而是调用doSomethingWithRowAtIndexPath。最重要的是,如果您希望发生UI反馈,还可以调用selectRowAtIndexPath。
就像Jaanus所说:
调用此(-selectRowAtIndexPath:animated: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:0 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:animated:scrollPosition:应该可以解决问题。
只需传递UITableViewScrollPositionNone
scrollPosition,用户就不会看到任何移动。
您还应该能够手动运行操作:
[theTableView.delegate tableView:theTableView didSelectRowAtIndexPath:indexPath]
在您selectRowAtIndexPath:animated:scrollPosition:
这样做之后,高亮显示以及所有相关的逻辑发生。
Swift 3/4/5解决方案
选择行
let indexPath = IndexPath(row: 0, section: 0)
tblView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
myTableView.delegate?.tableView!(myTableView, didSelectRowAt: indexPath)
取消选择行
let deselectIndexPath = IndexPath(row: 7, section: 0)
tblView.deselectRow(at: deselectIndexPath, animated: true)
tblView.delegate?.tableView!(tblView, didDeselectRowAt: indexPath)
iPad和iPhone平台有两种不同的方法,因此您需要同时实现这两种方法:
塞古。
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];
使用此类别可以选择表行,并在延迟后执行给定segue。
在您的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