how to make UIProgressView on the UITableViewCell change immediately?
问题 I put a UIProgressView on a UITableViewCell, like that: 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