我正在开发的应用程序正在推出自定义广告。我正在检索广告,网络方面的工作正常。我遇到的问题是,当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)adController:(id)controller returnedAd:(UIImage *)ad{
adImage.image = ad;
[UIView animateWithDuration:0.2 animations:^{
adImage.frame = CGRectMake(0, 372, 320, 44);
}];
NSLog(@"Returned Ad (delegate)");
}
当调用委托方法时,它会将消息记录到控制台,但UIImageView* adImage
动画显示需要5-6秒。由于应用程序处理请求的方式广告,动画需要即时。
隐藏广告的动画是即时的。
-(void)touchesBegan{
[UIView animateWithDuration:0.2 animations:^{
adImage.frame = CGRectMake(0, 417, 320, 44);
}];
}
答案 0 :(得分:4)
如果广告加载发生在后台线程中(最简单的检查方式是[NSThread isMainThread]
),那么您无法在同一个线程中更新UI状态! UIKit的大多数都不是线程安全的;当然UIViews当前显示的不是。可能发生的是主线程没有“注意到”后台线程中发生的变化,所以在其他事情发生之前它不会刷新到屏幕。
-(void)someLoadingMethod
{
...
if (resp)
{
...
[self performSelectorInMainThread:@selector(loadedAd:) withObject:ad waitUntilDone:NO];
}
}
-(void)loadedAd:(UIImage*)ad
{
assert([NSThread isMainThread]);
[[self delegate] adController:self returnedAd:ad];
}