• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-13 06:01:58 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在 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-推荐答案


使用这个....

- (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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap