Xcode open specific view with push notifications in storyboard
In my codes, I wrote it in this way
DetailView *vc = (DetailView *)[mainStoryboard
instantiateViewControllerWithIdentifier:@"DetailVC"];
self.window.rootViewController = vc;
It only show that view but I don't see the navigational bar and tab bar.
What is the right way to open a specific view (inside tabbarcontroller)
within storyboard when the app receive remote notifications automatically?
No comments:
Post a Comment