iOS pushViewController 不工作

Posted

技术标签:

【中文标题】iOS pushViewController 不工作【英文标题】:iOS pushViewController is not working 【发布时间】:2015-01-07 10:11:44 【问题描述】:

我有一个导航控制器、一个视图控制器和一个表格视图,它们都是在我的故事板中创建的:

当您触摸表格视图中的某一行时,它应该将一个新控制器推送到导航控制器上,但没有任何反应。代码如下:

- (void) tableView: (UITableView *) tableView didSelectRowAtIndexPath: (NSIndexPath *) indexPath 
UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle: nil];

UINavigationController *controller = (UINavigationController*)[mainStoryboard
                                                               instantiateViewControllerWithIdentifier: @"dbNav"];

SubLevelViewController *slController = [[SubLevelViewController alloc] initWithStyle:UITableViewStylePlain];
[controller pushViewController: slController animated: YES];

【问题讨论】:

controller nil? 不,控制器不是零。 【参考方案1】:

试试

- (void) tableView: (UITableView *) tableView didSelectRowAtIndexPath: (NSIndexPath *) indexPath 

    UINavigationController *controller  = self.navigationController;

    SubLevelViewController *slController = [[SubLevelViewController alloc] initWithStyle:UITableViewStylePlain];
    [controller pushViewController: slController animated: YES];
 

基本上instantiateViewControllerWithIdentifier 每次调用时都会创建指定视图控制器的新实例,因此您将视图推送到与显示的不同的导航控制器中

【讨论】:

【参考方案2】:

这对我有用。您必须定义索引路径。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

    ServicesModel *service = [services objectAtIndex:indexPath.row];
    ServiceViewController *serviceViewController = [self.storyboard        instantiateViewControllerWithIdentifier:@"ServiceView"];
    serviceViewController.serviceModel = service;
    [self.serviceController pushViewController:serviceViewController animated:YES];

【讨论】:

以上是关于iOS pushViewController 不工作的主要内容,如果未能解决你的问题,请参考以下文章

iOS - pushViewController 没有滑动背景图片

iOS 7 中的 PushViewController

在 pushViewController (iOS 11) 之后 NavigationBar 高度未更新

iOS - pushViewController 推送到 nil 视图控制器

pushViewController无法使用IOS11 SDK

使用 pushViewController 加载 TableViewController 后没有发生 Ios-Segue 到 UIViewController