IBOutlet UIWebView 保留计数

发布于 2024-09-16 10:01:29 字数 259 浏览 2 评论 0原文

我有一个视图控制器,其中我在 IB 中创建了 UIwebView。

IBOutlet UIWebView *webView;

@property (nonatomic, retain) IBOutlet UIWebView *webView;

@synthesize webView;

此 webView 在 vi​​ewDidLoad 中有 retainCount = 2。为什么?

谢谢

I have a View Controller in which I have UIwebView created in IB.

IBOutlet UIWebView *webView;

@property (nonatomic, retain) IBOutlet UIWebView *webView;

@synthesize webView;

this webView has retainCount = 2 in viewDidLoad. Why?

Thanks

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

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

发布评论

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

评论(1

掩耳倾听 2024-09-23 10:01:29

我的猜测是,这是因为它由您的类保留在 webView 属性中,并且由其子视图数组中的超级视图保留。

My guess would be that's because it's retained by your class in the webView property and it's retained by its superview inside the subviews array.

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