菜鸟教程小白 发表于 2022-12-13 06:01:58

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


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

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//static NSString *MyCellIdentifier = @&#34;MyIdentifier&#34;;
NSString *MyCellIdentifier = ;
UITableViewCell *cell1 = ;
    if(cell1==nil)
    {
      cell1=[initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:MyCellIdentifier];

    }

UIProgressView *prg =[ initWithProgressViewStyle:UIProgressViewStyleDefault];
CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 5.0f);
prg.transform = transform;
prg.progressTintColor=;
;

cell1.textLabel.text = objectForKey:@&#34;MusicName&#34;]];
cell1.textLabel.textColor = ;

    return cell1;

}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用这个....</p>

<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    ;

    UITableViewCell *cell = (UITableViewCell *);
    prg =[ initWithProgressViewStyle:UIProgressViewStyleDefault];
    CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 5.0f);
    prg.transform = transform;
    prg.progressTintColor=;
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 iOS 的 UITableView 中添加 UIProgressView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21348356/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21348356/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 iOS 的 UITableView 中添加 UIProgressView