【发布时间】:2023-05-17 06:24:01
【问题描述】:
我正在尝试找到一种在加载 UIImage 期间显示带有百分比标签的进度条的方法。标签和进度条应该显示加载的进度。
我的图像的加载是这样实现的:
NSData* receivedData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:urlImage]];
UIImage* tmp = [UIImage imageWithData:receivedData];
谢谢:)
【问题讨论】:
标签: ios uiimageview progress-bar