0
のUITableViewCell内部progressViewを使用する場合、私がようにUIProgressViewは、実際のフロート100
cell.imageView.file = (PFFile *)object[@"image"];
[cell.imageView loadInBackground:^(UIImage * _Nullable image, NSError * _Nullable error) {
} progressBlock:^(int percentDone) {
NSLog(@"%d",percentDone);
dispatch_async(dispatch_get_main_queue(), ^{
[cell.progressBar setProgress:percentDone animated:YES];
});
if (percentDone == 100) {
[cell.progressBar setHidden:YES];
}
}];
percentDone 100に到達する前に、イムNSLogging percentDone、及びprogressView 100に到達使用される前に、100の評価になります。これは2番目のセルにあるので、多分再利用と何か関係がありますか?
ありがとう、私はそれについて完全に忘れてしまった! – Prgmmr