菜鸟教程小白 发表于 2022-12-12 17:41:20

ios - UIView 动画延迟


                                            <p><p>我正在开发的一个应用正在引入自定义广告。我可以正常检索广告,并且网络方面的工作正常。我遇到的问题是当 AdController 收到广告时,它会解析 JSON 对象然后请求图像。</p>

<pre><code>// Request the ad information
NSDictionary* resp = ;
// If there is a response...
if (resp) {
    // Store the ad id into Instance Variable
    _ad_id = ;
    // Get image data
    NSData* img = ]];
    // Make UIImage
    UIImage* ad = ;
    // Send ad to delegate method
    [adController:self returnedAd:ad];
}
</code></pre>

<p>所有这些都按预期工作,并且 AdController 可以很好地拉入图像...</p>

<pre><code>-(void)adController:(id)controller returnedAd:(UIImage *)ad{
    adImage.image = ad;
    [UIView animateWithDuration:0.2 animations:^{
      adImage.frame = CGRectMake(0, 372, 320, 44);
    }];
    NSLog(@&#34;Returned Ad (delegate)&#34;);
}
</code></pre>

<p>调用委托(delegate)方法时,它会将消息记录到控制台,但 <code>UIImageView* adImage</code> 最多需要 5-6 秒才能进入动画。由于应用程序的方式正在处理广告的请求,动画需要是即时的。</p>

<p>隐藏广告的动画是即时的。</p>

<pre><code>-(void)touchesBegan{
    [UIView animateWithDuration:0.2 animations:^{
      adImage.frame = CGRectMake(0, 417, 320, 44);
    }];
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果广告加载发生在后台线程中(最简单的检查方法是 <code></code>),那么您无法在同一线程中更新 UI 状态!大多数 UIKit 都不是线程安全的;当然当前显示的 UIViews 不是。可能发生的情况是主线程没有“注意到”后台线程中发生的变化,因此在发生其他事情之前它不会刷新到屏幕上。</p>

<pre><code>-(void)someLoadingMethod
{
...
if (resp)
{
    ...
    ;
}
}

-(void)loadedAd:(UIImage*)ad
{
assert();
[ adController:self returnedAd:ad];
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIView 动画延迟,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7641280/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7641280/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIView 动画延迟