我试图在视图中以编程方式选择表格单元格。
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:1 inSection:1];
[self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
我的代表,
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
不会被调用。
如果我用鼠标选择模拟器中的单元格,则会调用委托,但是,不是以编程方式。
为什么会这样?