IBOutlet UIWebView 保留计数
我有一个视图控制器,其中我在 IB 中创建了 UIwebView。
IBOutlet UIWebView *webView;
@property (nonatomic, retain) IBOutlet UIWebView *webView;
@synthesize webView;
此 webView 在 viewDidLoad 中有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是,这是因为它由您的类保留在 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.