• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - UIView 动画延迟

[复制链接]
菜鸟教程小白 发表于 2022-12-12 17:41:20 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

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

// Request the ad information
NSDictionary* resp = [_server request:coords_dict isJSONObject:NO responseType:JSONResponse];
// If there is a response...
if (resp) {
    // Store the ad id into Instance Variable
    _ad_id = [resp objectForKey"ad_id"];
    // Get image data
    NSData* img = [NSData dataWithContentsOfURL:[NSURL URLWithString:[resp objectForKey"ad_img_url"]]];
    // Make UIImage
    UIImage* ad = [UIImage imageWithData:img];
    // Send ad to delegate method
    [[self delegate]adController:self returnedAd:ad];
}

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

-(void)adControllerid)controller returnedAdUIImage *)ad{
    adImage.image = ad;
    [UIView animateWithDuration:0.2 animations:^{
        adImage.frame = CGRectMake(0, 372, 320, 44);
    }];
    NSLog(@"Returned Ad (delegate)");
}

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

隐藏广告的动画是即时的。

-(void)touchesBegan{
    [UIView animateWithDuration:0.2 animations:^{
        adImage.frame = CGRectMake(0, 417, 320, 44);
    }];
}



Best Answer-推荐答案


如果广告加载发生在后台线程中(最简单的检查方法是 [NSThread isMainThread]),那么您无法在同一线程中更新 UI 状态!大多数 UIKit 都不是线程安全的;当然当前显示的 UIViews 不是。可能发生的情况是主线程没有“注意到”后台线程中发生的变化,因此在发生其他事情之前它不会刷新到屏幕上。

-(void)someLoadingMethod
{
  ...
  if (resp)
  {
    ...
    [self performSelectorInMainThreadselector(loadedAd withObject:ad waitUntilDone:NO];
  }
}

-(void)loadedAdUIImage*)ad
{
  assert([NSThread isMainThread]);
  [[self delegate] adController:self returnedAd:ad];
}

关于ios - UIView 动画延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7641280/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap