上面是我的聊天应用程序的情节提要。
您在Navigation Controller之前没有看到的是一个简单的登录视图。 Navigation Controller的情节提要Segue标识符为mainViewC

我想做的是在按下Conv View Controller时将用户带到push notification

这是到目前为止我得到的:

// AppDelegate.h
@property (strong, nonatomic) ConvViewController *convViewController;

// AppDelegate.m
self.window.rootViewController = self.convViewController;

这将我带到正确的视图,但视图为黑色。我猜测这与Navigiation Controller没有正确加载有关。

有任何想法吗?

最佳答案

您需要做的是从故事板上访问视图控制器。首先转到您希望带给用户的VC,并为其提供一个Storyboard ID。然后在您的应用程序委托中编写。

self.window.rootViewController = [[UIStoryboard storyboardWithName:@"Main" bundle:[NSBundle mainBundle]] instantiateViewControllerWithIdentifier:@"identifier"];

10-08 05:45