菜鸟教程小白 发表于 2022-12-13 07:24:45

ios - UIViewControllers 在 UIPageViewController 中被重用


                                            <p><p>我有一个 <code>UIPageVIewController</code> 并且我正在使用重用标识符初始化内部的 Controller ,即:</p>

<pre><code>BaseContentViewController *contentViewController = (BaseContentViewController *)];
</code></pre>

<p>我注意到了</p>

<blockquote>
<p>if a <code>UIViewController</code> is reused then <code>viewDidLoad</code> is not called in that controller so any code that I want to be executed every single time the <code>UIViewController</code> appears won&#39;t. </p>
</blockquote>

<p>例如,我想在每次出现时更改背景颜色。 </p>

<p><code>UITableViewCell</code> 有没有像 <code>prepareForReuse</code> 这样的方法,我可以把这段代码放进去?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我会把它放在 -viewWillAppear: 中。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIViewControllers 在 UIPageViewController 中被重用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30488410/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30488410/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIViewControllers 在 UIPageViewController 中被重用