- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我是第一次涉足 iOS 开发,我必须做的第一件事就是实现 custom container view controller - 让我们称它为 SideBarViewController
- 交换它显示的几个可能的 subview Controller 中的哪一个,几乎与标准的 Tab Bar Controller 完全一样。 (它几乎是一个标签栏 Controller ,但有一个可隐藏的侧面菜单而不是标签栏。)
按照 Apple 文档中的说明,每当我将子 ViewController 添加到我的容器时,我都会调用 addChildViewController
。我用于换出 SideBarViewController
显示的当前 subview Controller 的代码如下所示:
- (void)showViewController:(UIViewController *)newViewController {
UIViewController* oldViewController = [self.childViewControllers
objectAtIndex:0];
[oldViewController removeFromParentViewController];
[oldViewController.view removeFromSuperview];
newViewController.view.frame = CGRectMake(
0, 0, self.view.frame.size.width, self.view.frame.size.height
);
[self addChildViewController: newViewController];
[self.view addSubview: newViewController.view];
}
然后我开始尝试弄清楚 addChildViewController
在这里做了什么,我意识到我不知道。除了将新的 ViewController
粘贴到 .childViewControllers
数组中外,它似乎对任何东西都没有影响。从子 Controller 的 View 到我在 Storyboard上设置的子 Controller 的操作和导出仍然可以正常工作,即使我从不调用 addChildViewController
,我无法想象它还会影响什么。
确实,如果我重写我的代码不调用 addChildViewController
,而是看起来像这样......
- (void)showViewController:(UIViewController *)newViewController {
// Get the current child from a member variable of `SideBarViewController`
UIViewController* oldViewController = currentChildViewController;
[oldViewController.view removeFromSuperview];
newViewController.view.frame = CGRectMake(
0, 0, self.view.frame.size.width, self.view.frame.size.height
);
[self.view addSubview: newViewController.view];
currentChildViewController = newViewController;
}
...据我所知,我的应用程序仍然可以完美运行!
Apple 文档没有详细说明 addChildViewController
的作用,或者我们为什么要调用它。在 UIViewController
Class Reference 的部分中完整地描述了该方法的作用或为什么要使用它。目前是:
Adds the given view controller as a child....This method is only intended to be called by an implementation of a custom container view controller. If you override this method, you must call super in your implementation.
同一页前面还有这段:
Your container view controller must associate a child view controller with itself before adding the child’s root view to the view hierarchy. This allows iOS to properly route events to child view controllers and the views those controllers manage. Likewise, after it removes a child’s root view from its view hierarchy, it should disconnect that child view controller from itself. To make or break these associations, your container calls specific methods defined by the base class. These methods are not intended to be called by clients of your container class; they are to be used only by your container’s implementation to provide the expected containment behavior.
Here are the essential methods you might need to call:
addChildViewController:
removeFromParentViewController
willMoveToParentViewController:
didMoveToParentViewController:
但它没有提供任何线索,说明它所谈论的“事件”或“预期收容行为”是什么,或者为什么(甚至何时)调用这些方法是“必要的”。
Apple 文档的“Custom Container View Controllers”部分中的自定义容器 View Controller 的示例都调用了此方法,因此我认为它除了将子 ViewController 弹出到数组之外还有一些重要的用途,但我可以弄清楚那个目的是什么。这个方法有什么作用,为什么要调用它?
最佳答案
我认为一个例子胜过千言万语。
我正在开发一个图书馆应用程序,想要展示一个漂亮的记事本 View ,当用户想要添加笔记时它会出现。
在尝试了一些解决方案之后,我最终发明了自己的自定义解决方案来显示记事本。因此,当我想显示记事本时,我创建了一个新的 NotepadViewController
实例,并将其 Root View 作为 subview 添加到主视图。到目前为止一切顺利。
然后我注意到在横向模式下,记事本图像部分隐藏在键盘下方。
所以我想更改记事本图像并将其向上移动。为此,我在 willAnimateRotationToInterfaceOrientation:duration:
方法中编写了正确的代码,但是当我运行该应用程序时,什么也没有发生!调试后我注意到 UIViewController
的旋转方法都没有在 NotepadViewController
中实际调用。只有主视图 Controller 中的那些方法被调用。
为了解决这个问题,我需要在主视图 Controller 中调用 NotepadViewController
中的所有方法时手动调用它们。这很快会使事情变得复杂,并在应用中的不相关组件之间产生额外的依赖关系。
那是过去,在引入 subview Controller 的概念之前。但是现在,您只需将 addChildViewController
添加到主视图 Controller ,一切都会按预期工作,无需任何手动操作。
编辑:有两类事件被转发到 subview Controller :
1-外观方法:
- viewWillAppear:
- viewDidAppear:
- viewWillDisappear:
- viewDidDisappear:
2- 旋转方法:
- willRotateToInterfaceOrientation:duration:
- willAnimateRotationToInterfaceOrientation:duration:
- didRotateFromInterfaceOrientation:
您还可以通过覆盖 shouldAutomaticallyForwardRotationMethods
来控制要自动转发的事件类别和 shouldAutomaticallyForwardAppearanceMethods
.
关于ios - addChildViewController 实际上做了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17192005/
IO 设备如何知道属于它的内存中的值在memory mapped IO 中发生了变化? ? 例如,假设内存地址 0 专用于保存 VGA 设备的背景颜色。当我们更改 memory[0] 中的值时,VGA
我目前正在开发一个使用Facebook sdk登录(通过FBLoginView)的iOS应用。 一切正常,除了那些拥有较旧版本的facebook的人。 当他们按下“使用Facebook登录”按钮时,他
假设我有: this - is an - example - with some - dashesNSRange将使用`rangeOfString:@“-”拾取“-”的第一个实例,但是如果我只想要最后
Card.io SDK提供以下详细信息: 卡号,有效期,月份,年份,CVV和邮政编码。 如何从此SDK获取国家名称。 - (void)userDidProvideCreditCardInfo:(Car
iOS 应用程序如何从网络服务下载图片并在安装过程中将它们安装到用户的 iOS 设备上?可能吗? 最佳答案 您无法控制应用在用户设备上的安装,因此无法在安装过程中下载其他数据。 只需在安装后首次启动应
我曾经开发过一款企业版 iOS 产品,我们公司曾将其出售给大型企业,供他们的员工使用。 该应用程序通过 AppStore 提供,企业用户获得了公司特定的配置文件(包含应用程序配置文件)以启用他们有权使
我正在尝试将 Card.io SDK 集成到我的 iOS 应用程序中。我想为 CardIO ui 做一个简单的本地化,如更改取消按钮标题或“在此保留信用卡”提示文本。 我在 github 上找到了这个
我正在使用 CardIOView 和 CardIOViewDelegate 类,没有可以设置为 YES 的 BOOL 来扫描 collectCardholderName。我可以看到它在 CardIOP
我有一个集成了通话工具包的 voip 应用程序。每次我从我的 voip 应用程序调用时,都会在 native 电话应用程序中创建一个新的最近通话记录。我在 voip 应用程序中也有自定义联系人(电话应
iOS 应用程序如何知道应用程序打开时屏幕上是否已经有键盘?应用程序运行后,它可以接收键盘显示/隐藏通知。但是,如果应用程序在分屏模式下作为辅助应用程序打开,而主应用程序已经显示键盘,则辅助应用程序不
我在模拟器中收到以下错误: ImageIO: CGImageReadSessionGetCachedImageBlockData *** CGImageReadSessionGetCachedIm
如 Apple 文档所示,可以通过 EAAccessory Framework 与经过认证的配件(由 Apple 认证)进行通信。但是我有点困惑,因为一些帖子告诉我它也可以通过 CoreBluetoo
尽管现在的调试器已经很不错了,但有时找出应用程序中正在发生的事情的最好方法仍然是古老的 NSLog。当您连接到计算机时,这样做很容易; Xcode 会帮助弹出日志查看器面板,然后就可以了。当您不在办公
在我的 iOS 应用程序中,我定义了一些兴趣点。其中一些有一个 Kontakt.io 信标的名称,它绑定(bind)到一个特定的 PoI(我的意思是通常贴在信标标签上的名称)。现在我想在附近发现信标,
我正在为警报提示创建一个 trigger.io 插件。尝试从警报提示返回数据。这是我的代码: // Prompt + (void)show_prompt:(ForgeTask*)task{
您好,我是 Apple iOS 的新手。我阅读并搜索了很多关于推送通知的文章,但我没有发现任何关于 APNS 从 io4 到 ios 6 的新更新的信息。任何人都可以向我提供 APNS 如何在 ios
UITabBar 的高度似乎在 iOS 7 和 8/9/10/11 之间发生了变化。我发布这个问题是为了让其他人轻松找到答案。 那么:在 iPhone 和 iPad 上的 iOS 8/9/10/11
我想我可以针对不同的 iOS 版本使用不同的 Storyboard。 由于 UI 的差异,我将创建下一个 Storyboard: Main_iPhone.storyboard Main_iPad.st
我正在写一些东西,我将使用设备的 iTunes 库中的一部分音轨来覆盖 2 个视频的组合,例如: AVMutableComposition* mixComposition = [[AVMutableC
我创建了一个简单的 iOS 程序,可以顺利编译并在 iPad 模拟器上运行良好。当我告诉 XCode 4 使用我连接的 iPad 设备时,无法编译相同的程序。问题似乎是当我尝试使用附加的 iPad 时
我是一名优秀的程序员,十分优秀!