UIViewController的子类立即发布

发布于 2024-11-24 20:30:37 字数 305 浏览 1 评论 0原文

子类化 UIViewController 我在 NIB 文件中有 UIView,然后添加名为 CustomViewController 的自定义类的“Object”,该类具有view 属性连接到来自NIB 文件的UIView 和Interface Builder 中连接的其他IBOutlet UIImageView。

我的问题是为什么这个类从 NIB 加载(调用 initWithNibName)并立即释放。

Subclassing UIViewController I have UIView within NIB file then add "Object" with Custom Class named CustomViewController, this class have view property connected to the UIView from NIB file and other IBOutlet UIImageView connected within Interface Builder.

My question if why this class is loaded from NIB (initWithNibName is called) and is released immediately.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

养猫人 2024-12-01 20:30:37

笔尖中加载的所有内容都会自动释放。如果您没有显式保留它,或者没有将其连接到属性定义中声明的 IBOutlet 属性,则它将消失。 (通常会让你不高兴。)

Everything loaded in a nib is autoreleased. If you don't explicitly retain it, or connect it to an IBOutlet property with retain stated in the property definition, it will go away. (And usually make you unhappy.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文