我正在开发一个基本的,它有一个这样的故事板:
当 UIButton 被按下时,URL 被加载。如果 URL 请求成功,那么我打开了“成功”视图(在右侧)。
一切正常,但我似乎无法让导航控制器出现在 Success 视图上。有人可以帮助我吗?另外,如果导航可以在该视图上进行,我将如何添加“返回”按钮以将用户带回主视图?
到目前为止,这是我的代码:
UIStoryboard * mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
NSLog(@"%@", status_code);
UIViewController *linkSuccess = [mainStoryboard instantiateViewControllerWithIdentifier:@"linkSuccess"];
[self presentViewController:linkSuccess
animated:YES
completion:NULL];
彼得