我在 UITableView 中使用自定义 UIProgressView 这可以正常工作,但不是特定的索引 ..就像我的表格显示 3 个单元格然后当我们选择第一个单元格或索引时,我的进度 View 显示在第 3 个索引上,当我们滚动我的表格时,进度 View 显示在表格的每个单元格上......所以我想要选择的索引显示进度 View 。
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
//static NSString *MyCellIdentifier = @"MyIdentifier";
NSString *MyCellIdentifier = [NSString stringWithFormat"S%1dR%1d",indexPath.section,indexPath.row];
UITableViewCell *cell1 = [tableView dequeueReusableCellWithIdentifier:MyCellIdentifier];
if(cell1==nil)
{
cell1=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:MyCellIdentifier];
}
UIProgressView *prg =[[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 5.0f);
prg.transform = transform;
prg.progressTintColor=[UIColor blueColor];
[cell1.contentView addSubview:prg];
cell1.textLabel.text = [NSString stringWithFormat: @"%@",[[item objectAtIndex:indexPath.row-1]objectForKey"MusicName"]];
cell1.textLabel.textColor = [UIColor redColor] ;
return cell1;
}
Best Answer-推荐答案 strong>
使用这个....
- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
{
[prg removeFromSuperview];
UITableViewCell *cell = (UITableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
prg =[[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 5.0f);
prg.transform = transform;
prg.progressTintColor=[UIColor blueColor];
[cell addSubview:prg];
}
关于ios - 如何在 iOS 的 UITableView 中添加 UIProgressView,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/21348356/
|