菜鸟教程小白 发表于 2022-12-13 02:33:05

iphone - ARC - UIWebView/UIViewController 留在内存中?


                                            <p><p>在使用 ARC 时,我的旧 UIWebViews 似乎仍然存在,出于某种原因,即使在我退出他们的 UIViewController 之后,它们仍然出现在 OSX Safari 的开发者工具中。</p>

<p>我正在为包含 UIWebView 的 ViewController 分配一个转换,如下所示:</p>

<pre><code>    //Create settings view/tabbar
    UITabBarController *tabController = [ init] ;

    StyleViewController *styleTab = [ initWithNibName:@&#34;StyleViewController&#34; bundle:nil];
    styleTab.tabBarItem.title = @&#34;Style&#34;;
    styleTab.tabBarItem.image = ;

    NSArray *tabsArray = @;
    tabController.viewControllers = tabsArray;

    prevView = self.window.rootViewController;

    [UIView
      transitionWithView:self.window
      duration:0.5
      options:UIViewAnimationOptionTransitionFlipFromRight
      animations:^(void) {
            BOOL oldState = ;
            ;
            self.window.rootViewController = tabController;
            ;
      }
    completion:nil];
</code></pre>

<p>我是这样从那种观点中走出来的:</p>

<pre><code>    [UIView
      transitionWithView:self.window
      duration:0.5
      options:UIViewAnimationOptionTransitionFlipFromLeft
      animations:^(void) {
            BOOL oldState = ;
            ;
            self.window.rootViewController = prevView;
            ;
      }
    completion:nil];
</code></pre>

<p>UIWebView (int StyleViewController) 是这样创建的:</p>

<pre><code>    @implementation StyleViewController
    UIWebView *webView;

    //viewDidLoad
    webView = [ initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 1)];
    webView.scalesPageToFit = NO;
    webView.scrollView.scrollEnabled = false;
    webView.multipleTouchEnabled = false;
    webView.alpha = 0;
    webView.backgroundColor = ;
    webView.opaque = false;

    @end
</code></pre>

<p>但是,我注意到当我在 Safari 中进行检查时,旧的 UIWebViews 似乎在堆积,而旧的 UIWebViews 仍然显示在菜单中。这是 Safari 开发者工具中的错误吗?有没有办法确保我的 UIWebViews 被释放?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>问题在于代表。我正在使用 <a href="https://github.com/marcuswestin/WebViewJavascriptBridge" rel="noreferrer noopener nofollow">WebViewJavascriptBridge</a> ,并且它对代表做了一些时髦的事情,所以我需要先摆脱它。在我的 <code>viewWillDisappear</code> 选择器中执行此操作可防止它们被保留:</p>

<pre><code>- (void) viewWillDisappear:(BOOL)animated { /* or dealloc */
    ;

    _bridge = nil;

    //UIWebView #1
    ;
    webView.delegate = nil; webView = nil;

    //UIWebView #2
    ;
    textView.delegate = nil; textView = nil;
}
</code></pre>

<p>无论如何,感谢您提供的所有出色答案!</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - ARC - UIWebView/UIViewController 留在内存中?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16347469/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16347469/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - ARC - UIWebView/UIViewController 留在内存中?