gpt4 book ai didi

ios - 如何在 iOS 的 UITableView 中添加 UIProgressView

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:44:12 26 4
gpt4 key购买 nike

我在 UITableView 中使用自定义 UIProgressView 这个工作正常但不是特定的索引..就像我的表显示 3 个单元格然后当我们选择第一个单元格或索引然后我的进度 View 显示在第三个索引上当我们滚动我的表然后进度 View 显示在表格的每个单元格上....所以我希望选定的索引显示进度 View 。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)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;

}

最佳答案

用这个....

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com