菜鸟教程小白 发表于 2022-12-12 21:10:27

iphone - 更新 UIButton 的背景时延迟


                                            <p><p>我正在使用 setBackgroundImage:forState: 来更新 UIButton 的背景。背景更新,但仅在几秒钟后。这里显然有一些刷新周期在起作用,但我无法准确找到问题所在。我尝试使用 setNeedsRefresh 和 setNeedsDisplay 没有任何结果。</p>

<p>如何瞬间改变 UIButton 背景?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当您尝试在后台线程(例如,在委托(delegate)回调中)执行 UIKit 操作时,通常会导致此类奇怪的延迟。试试这个:</p>

<pre><code>dispatch_async(dispatch_get_main_queue(), ^{
    // set your button background here
});
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 更新 UIButton 的背景时延迟,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10702156/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10702156/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 更新 UIButton 的背景时延迟