私はDACircularProgressView
自分のアプリで使用していて、それを に入れようとしていUITableViewCell
ます。
ただし、セルが選択されていない限り、進行状況ビューは表示されません。
それを設定するためのコードはごくわずかです...
カスタム セル サブクラス...
- (void)awakeFromNib
{
[super awakeFromNib];
self.progressView.progressTintColor = [UIColor colorWithRed:0.141 green:0.705 blue:0.553 alpha:1.0];
self.progressView.trackTintColor = [UIColor clearColor];
self.progressView.thicknessRatio = 0.1;
}
テーブルビューコントローラー...
- (void)configureCell:(CCQuickViewMatchTableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath
{
Match *match = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.progressView.progress = (float)arc4random_uniform(90) / 90.0;
cell.homeTeamNameLabel.text = match.homeTeam.name;
cell.awayTeamNameLabel.text = match.awayTeam.name;
cell.homeTeamScoreLabel.text = match.homeTeamScore;
cell.awayTeamScoreLabel.text = match.awayTeamScore;
}
UITableViewCell のいくつかの機能をオーバーライドする必要があると思いますが、どれが、またはなぜかわからないのですか?