对不起问题标题。我找不到合适的标题。
当我打开视图时,我有UITableView
来自 url 的内容图像,UITableView
直到图像加载后才显示,这需要时间。
我通过 php 从 JSON 获取图像。
我想显示表格,然后显示图像加载过程。
这是我的应用程序中的代码:
NSDictionary *info = [json objectAtIndex:indexPath.row];
cell.lbl.text = [info objectForKey:@"title"];
NSString *imageUrl = [info objectForKey:@"image"];
cell.img.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrl]]];
[cell.img.layer setBorderColor: [[UIColor blackColor] CGColor]];
[cell.img.layer setBorderWidth: 1.0];
return cell;
对不起,我的英语很弱。