我处于需要从另一个调用中调用 didSelectRowAtIndexPath 的情况,因为我确实这样做了,我创建了该类的对象并调用 viewdidload 以便我的表视图被初始化
- (void)_hideTapped:(id)sender
{
LeftController *left = [[LeftController alloc]init];
[left viewDidLoad ];
}
在左控制器
- (void)viewDidLoad {
[super viewDidLoad];
mainArray = [[NSMutableArray alloc]initWithObjects:@"Go To Camera",@"Big Contacts List",@"Where Am I? On map",@"Watch And Alarm",@"Calculator With Big Letters",@"Big KeyBoard For Email",@"Calendar With Events",@"Settings", nil ];
// NSLog(@"mainArray%@",mainArray);
if (!_tableView) {
UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
tableView.delegate = (id<UITableViewDelegate>)self;
tableView.dataSource = (id<UITableViewDataSource>)self;
[self.view addSubview:tableView];
self.tableView = tableView;
[self iDecideWhichCell];
}
}
-(void)iDecideWhichCell
{
NSIndexPath *path = [NSIndexPath indexPathForRow:0 inSection:0];
[self tableView:self.tableView didSelectRowAtIndexPath:path];
}
这是我的 didSelectRowAtIndexPath 的一部分,我正在使用 JASidePanels 进行像 facebook 这样的拆分视图,这就是他们推动 viewcontroller 的方式,如果我转到 leftcontroller 并自行单击,它可以正常工作,但是当我以编程方式执行整个过程时,它就无法正常工作
if (indexPath.row ==0)
{
NSLog(@"%@",tableView);
self.sidePanelController.centerPanel = [[UINavigationController alloc] initWithRootViewController:[[NewViewController alloc] init]];
}
请任何人都可以告诉我如何实现这一点我检查了这个答案,从其他 ViewController 调用 didSelectRowAtIndexPath 没有响应 iPad
但我不明白如何在我的代码中实现这一点