vivek bhoraniya
vivek bhoraniya

Reputation: 1535

Xcode 7 navigationcontrller issue

I am facing some kind of issue in my when I compile my code with xcode 7.

Here is my code:

 UIViewController *vcSomeObj = [self.storyboard instantiateViewControllerWithIdentifier:@"vcSOmeClass"];
vcSomeObj.channelID   = detailOfUserTable.ID;
[self.navigationController setViewControllers:@[vcSomeObj] animated:NO];

This is working fine when I compile and run my code from xcode6.4.

This thing hang my application. And when I goes to any app and come agian to my app it will take to main controller and after sometime app crashes.

I can't find anything in debug.

Upvotes: 0

Views: 46

Answers (2)

vivek bhoraniya
vivek bhoraniya

Reputation: 1535

In storyboard file We need to select English check box also otherwise application will hang an crash.

enter image description here

Upvotes: 1

FramGuo
FramGuo

Reputation: 11

In my opinion.you set the current navigation's viewcontroller.what's happen to current viewController in navigation stack when you in current viewController,so ,I guess you can do like this

[self.navigationController setViewControllers:@[vcSomeObj,self] animated:NO];

Upvotes: 0

Related Questions