2

マーキー ラベルを UITableView セルに配置したいのですが、ラベル テキストのようにカスタマイズすると色が異なります

私は MarqueeLabel クラスを使用しており、その Marquee ラベルを UITableViewCell に表示することができ、完全に機能しています。

NSAttributedString も試しましたが、MarqueeLabel はラベル テキストの異なる色をサポートしていません

誰かが答えを持っているなら、私に教えてください

ありがとう。

これが私のコードです

[cell.contentView addSubview:[self createMarqueeLabelWithIndex:indexPath.row]];

[cell.textLabel setTextColor:[UIColor redColor] range:NSMakeRange(4, 3)];

-(MarqueeLabel *)createMarqueeLabelWithIndex:(int)index
{

    MarqueeLabel *continuousLabel2 = [[MarqueeLabel alloc] initWithFrame:CGRectMake(10,0,300,30) rate:50.0f andFadeLength:10.0f];
    continuousLabel2.marqueeType = MLContinuous;
    continuousLabel2.continuousMarqueeSeparator = @"";
    continuousLabel2.animationCurve = UIViewAnimationOptionCurveLinear;
    continuousLabel2.numberOfLines = 1;
    continuousLabel2.opaque = NO;
    continuousLabel2.enabled = YES;
    continuousLabel2.shadowOffset = CGSizeMake(0.0, -1.0);
    continuousLabel2.textAlignment = UITextAlignmentLeft;
    continuousLabel2.backgroundColor = [UIColor clearColor];
    continuousLabel2.font = [UIFont fontWithName:@"Helvetica-Bold" size:17.000];

    NSString *strText = [[arrTicker objectAtIndex:index] objectForKey:@"text"];
    NSString *strTime = [[arrTicker objectAtIndex:index] objectForKey:@"time"];
    NSString *strUser = [[arrTicker objectAtIndex:index] objectForKey:@"userid"];

    NSString *strTemp = [NSString stringWithFormat:@"%@ %@ %@    ",strText,strTime,strUser];

    continuousLabel2.text = [NSString stringWithFormat:@"%@",strTemp];

    return continuousLabel2;
}
4

2 に答える 2

3

cellforrowatindexpath で uilabel を作成し、uilabel のテキスト セットを属性付き文字列に設定して、uilabel を marque ラベルに変換し、サブ ビューをセルに追加します。

これがお役に立てば幸いです。ありがとう。

于 2013-11-20T09:37:43.623 に答える
1

最良の答えではなく、汚いハックです。

簡単な調査の後、私はちょうど追加[self setTextColor:[super textColor]];しましたforwardPropertiesToSubLabel

- (void)forwardPropertiesToSubLabel {
    // Since we're a UILabel, we actually do implement all of UILabel's properties.
    // We don't care about these values, we just want to forward them on to our sublabel.
    NSArray *properties = @[@"baselineAdjustment", @"enabled", @"font", @"highlighted", @"highlightedTextColor", @"minimumFontSize", @"shadowColor", @"shadowOffset", @"textAlignment", @"textColor", @"userInteractionEnabled", @"text", @"adjustsFontSizeToFitWidth", @"lineBreakMode", @"numberOfLines", @"backgroundColor"];
    for (NSString *property in properties) {
        id val = [super valueForKey:property];
        [self.subLabel setValue:val forKey:property];
    }
    [self setText:[super text]];
    [self setFont:[super font]];
    [self setTextColor:[super textColor]];
}

ストーリーボード エディターでラベルの色を変更できるようになりました

ストーリーボードでの MarqueeLabel の編集

注:ご覧のとおり、プレーン テキストを使用しています。属性付きテキストのハックは機能しません。

于 2013-11-09T22:23:42.817 に答える