我正在开发的一个应用正在引入自定义广告。我可以正常检索广告,并且网络方面的工作正常。我遇到的问题是当 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-推荐答案 strong>
如果广告加载发生在后台线程中(最简单的检查方法是 [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/
|