“dealloc” UIView 的未调用

发布于 2024-12-23 01:46:41 字数 784 浏览 2 评论 0原文

我有简单的视图控制器

[.h]
@interface GLViewController : UIViewController <UISplitViewControllerDelegate>{
    MGSplitViewController*          splitController;
}
-(void)setSplitter: (MGSplitViewController*)splitter;
@end

[.mm]
- (void)loadView
{ 
    GLView* glView = [[GLView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] ];
    glView.multipleTouchEnabled = YES;
    self.view = glView;
    [glView release];

}

- (void)setSplitter: (MGSplitViewController*)splitter
{
    splitController = splitter;
}

首先,我初始化 GLViewController 并将其推送到 UINavigationController 中,它在 MGSplitController 中定义为详细视图控制器。但是当我弹出控制器时,不会调用 GLView 类的 dealloc 方法。 GLViewController 的 dealloc 方法中 self.view.retainCount 的值为 7,所以,看起来好像有什么东西将我的视图对象的引用计数器增加了 7,但它会是什么?

I have simple View controller

[.h]
@interface GLViewController : UIViewController <UISplitViewControllerDelegate>{
    MGSplitViewController*          splitController;
}
-(void)setSplitter: (MGSplitViewController*)splitter;
@end

[.mm]
- (void)loadView
{ 
    GLView* glView = [[GLView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] ];
    glView.multipleTouchEnabled = YES;
    self.view = glView;
    [glView release];

}

- (void)setSplitter: (MGSplitViewController*)splitter
{
    splitController = splitter;
}

First, I init and push GLViewController into UINavigationController, which is defined as detailed view controller in MGSplitController. But when I pop my controller back, dealloc method of GLView class isn't called. The value of self.view.retainCount in dealloc method of GLViewController is 7, so, it's looks like something increases the reference counter of my view object by 7, but what can it be?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文