- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
听说在XCode 4.5中有一些变化,Storyboard identifier不再叫identifier,而是Storyboard ID。我尝试使用它,但它没有启动任何东西。它总是空白的。我做错了什么?
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:nil];
HistoryViewController* historyVC = [storyboard instantiateViewControllerWithIdentifier:@"histSB"];
与
[self presentViewController:historyVC animated:YES completion:nil];
或
[self.navigationController pushViewController:historyVC animated:YES];
或
[self presentModalViewController:historyVC animated:YES];
查看 Storyboard中设置的屏幕截图:
最佳答案
这是我在我的应用程序中使用过几次的东西,用于那些 segues 不切实际的地方。根据上面提供的代码和屏幕截图,以下是我的连接方式:
HistoryViewController *historyVC = [self.storyboard instantiateViewControllerWithIdentifier: @"histSB"];
[self.navigationController pushViewController: historyVC animated:YES];
如果您从 iPad 上的弹出窗口显示 View Controller ,这将特别有用。将带有自己的导航 Controller 的 View 添加到 Storyboard:
请注意,导航 Controller 左侧没有 segue。以下代码在弹出窗口中显示此内容:
HistoryViewController *historyVC = [self.storyboard instantiateViewControllerWithIdentifier: @"histSB"];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController: historyVC];
UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController: navigationController];
然后,您可以以此为基础,通过 segue(注意 View Controller 右侧的那个)将其他 View Controller 推送到导航 Controller 上:
[self performSegueWithIdentifier: @"WhateverComesNextSegue" sender: self];
希望对您有所帮助。
关于iphone - instantiateViewControllerWithIdentifier 显示空白 View (xcode 4.5),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12843815/
我正在尝试使用下图所示的代码片段实例化 MainStoryBoard.storyboard 中定义的 ViewController。我还为 Controller 分配了一个标识符,但应用程序因图片中显
我正在主 Controller 中加载以下代码。我已经进行了调试,以确保它调用 WebPortalViewController 时没有任何问题。 父 Controller A.viewDidLoad(
我正在使用 Storyboard,我需要使用此方法将 Storyboard中的 View Controller 与 View Controller 同步。我不知道在哪里添加这个方法。如果它自己,我将如
我在将一个 View 推送到另一个 View 时遇到问题并且还发现了代码中的错误,但我已尝试找出解决方案。请参阅下面的代码 print(">") let vc = self.storyboard?.i
UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard"
我有这段代码,每次我使用它时,目标 View 的 viewDidLoad 都会被调用两次。 为什么会这样? Destination *myDestination = [self.storyboard
是否可以将 UIViewController 添加到 storyboard,当使用 instantiateViewControllerWithIdentifier 创建时将返回 中指定的大小 Stor
我有两个不同的入口点: let entryPoint: UITabBarController = mainStoryboard.instantiateViewControllerWithIdentif
我正在尝试以编程方式将 ViewController 推送到导航 Controller 中,并且我正在使用我的 Storyboard来创建它。 这是我的代码: + (void) pushViewCon
当我尝试在 iPhone 上 instantiateViewControllerWithIdentifier 时,应用程序崩溃了,尽管这在 ios 模拟器上运行良好。我使用的代码是: let ques
我有一个 Storyboard 并从如下代码实例化一个 View Controller : NSLog(@"1"); MyController *vc = (MyController *)[[UISt
我想创建一种通过自定义转换显示在主 Controller 中的弹出 View 。 我将弹出 View Controller 创建到 Storyboard中,并将其 View 设置为自由形式,然后调整
我经常发现在我的项目中我可能需要通过 Storyboard ID/Restoration ID 启动 UIViewController;但是,我经常通过查询包含与标题关联的 ID 的字典来获取 ID,
和有什么区别实例化ViewControllerWithIdentifier 和 initWithNibName ,除了前者来自 Storyboard ,后来不是吗? UIStoryboard *sig
我有一个 UIViewController (带有隐藏的 UINavigationController),其中包含一个 UIButton。单击该按钮会在另一个 UIViewController 上调用
我创建了一个使用大量容器 View 的应用程序。今天我发现 iOS 5 不支持嵌入式 segues(感谢 Xcode 让我知道。)所以现在我有很多嵌入式 segue,它们可以在彼此之间传递数据。 我正
如果我有一个 Storyboard,其 View Controller 已被标记。那么这两个 API 有什么区别呢? 我想知道返回的对象是否有一些差异。它们是完全相同的还是其中之一会初始化更多的东西?
我有一个问题: ExploreViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"Profi
我正在尝试添加 View Controller 容器 library到remail电子邮件客户端。这个想法是 View Controller 容器在两层中呈现其 subview Controller
我有一个名为 ContentViewControllerPartial 的类,它扩展了 UIViewController。我使用实例化它几次content = [self.storyboard ins
我是一名优秀的程序员,十分优秀!