ToolBar back button is not working

2019-08-29 09:23发布

Iam doing one project using storyboard ,in one viewcontroller i have a button.When i clicked that it will move to next viewcontroller but its a separate xib file. Now i tried to add aback button to that xib file So i can move back to my storyboard but its not working form me ?

I tried following code for moving from xib to storyboard viewcontroller

viewcontrollerOne *list= [self.storyboard instantiateViewControllerWithIdentifier:@"detail"];
[self presentModalViewController:list animated:YES];

please let me know the reason why its not working?

2条回答
混吃等死
2楼-- · 2019-08-29 09:58

you can try changing your project to UINavigationController and then in the storyboard you can link the views

查看更多
放荡不羁爱自由
3楼-- · 2019-08-29 10:05

This code will work when you want to move from an xib to a viewcontroller in Storyboard,Its working for me.

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"IDENTIFIER"];
[self.navigationController pushViewController:vc animated:YES];
查看更多
登录 后发表回答