如何使UITableViewCell上的UIProgressView立即改变?
我在UITableViewCell上放置了一个UIProgressView,就像这样:
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"downloadcell"];
if(cell==nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:@"downloadcell"] autorelease];
UIProgressView* downPreView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
downPreView.tag = 123;
downPreView.frame = CGRectMake(400,70, 200,10);
[cell.contentView addSubview:downPreView];
}
当下载大小发生变化时,我这样做:
UIProgressView* downPreView = (UIProgressView*)[cell viewWithTag:123];
downPreView.progress = downloadPre;
但downPreView的外观不会立即改变,只有在我触摸单元格或其他单元格后,如何使UITableViewCell上的UIProgressView立即更改?
performSelectorOnMainThread就可以了,一切都很好。
链接地址: http://www.djcxy.com/p/48761.html上一篇: how to make UIProgressView on the UITableViewCell change immediately?