我试图找到一种在加载 UIImage 期间显示带有百分比标签的进度条的方法。标签和进度条应该显示加载的进度。
我的图像的加载是这样实现的:
NSData* receivedData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:urlImage]];
UIImage* tmp = [UIImage imageWithData:receivedData];
谢谢 :)
我试图找到一种在加载 UIImage 期间显示带有百分比标签的进度条的方法。标签和进度条应该显示加载的进度。
我的图像的加载是这样实现的:
NSData* receivedData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:urlImage]];
UIImage* tmp = [UIImage imageWithData:receivedData];
谢谢 :)