在我的代码中我称之为
[request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
if (responseData != nil) {
NSError *error = nil;
NSArray *dataSource = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONReadingMutableLeaves error:&error];
[self.ticker1 loadData:dataSource];
} else {
NSLog(@"Error requesting timeline %@ with user info %@.", error, error.userInfo);
}
}];
在 loadData: 方法中我这样做
NSDictionary *dict = [dataSource objectAtIndex:0];
_label.text = [dict objectForKey"text"];
dispatch_queue_t queue = dispatch_queue_create("com.test.ios.task", NULL);
dispatch_queue_t main = dispatch_get_main_queue();
dispatch_async(queue, ^{
NSURL *imageURL = [NSURL URLWithString:[[dict objectForKey"user"] objectForKey"profile_image_url"]];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
dispatch_async(main, ^{
_image.image = [UIImage imageWithData:imageData];
});
});
dispatch_release(queue);
问题是我在主队列加载的图像比设置的 _label.text 快得多。它在大约 4-5 秒的长时间延迟后被设置。我想知道为什么会这样。是因为 main queue 没有被释放还是因为那几行?
Best Answer-推荐答案 strong>
我无法从您的代码中看出请求的处理程序 block 正在哪个线程上被调用,但如果它不是主线程,那可能就是问题所在。
尝试从内部设置标签的文本属性
dispatch_async(main, ^{
_label.text = [dict objectForKey"text"];
});
阻止。
关于ios - UILabel 的文本在延迟后加载,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/14697182/
|