UIWindows 类子视图方法丢失
我正在观看有关交换视图的视频教程。
请参阅下面的代码:
NSArray *subs = [window subviews];
“窗口子视图”代码只是将视图返回到数组 subs 中。
但我检查了 UIWindow 类,但找不到属性“subviews”。请帮助,如果我不理解代码,我观看视频教程就没有意义。
非常感谢
Im just going through a video tutorial on swaping views.
see code below please:
NSArray *subs = [window subviews];
The "window subviews" code simply returns the views into the array subs.
But I checked the UIWindow class and I cannot find the property "subviews". Please help, no point my watching video tutorials if I dont understand the code.
many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIWindow继承自UIView。 UIView 具有 子视图属性。
UIWindow inherits from UIView. UIView has the subviews property.