1

私はこれをやろうとしています:

必要なストローク

だから私はこのコードを使用しています:

[self.lblRound setOutlineColor:[UIColor colorWithRed:(68/255.0) green:(82/255.0) blue:(120/255.0) alpha:1]];
 self.lblRound.drawOutline = YES;

しかし、これは私が得るものです:

私が得るもの

私もこのコードを試しました:

lblRound.shadowColor = [UIColor colorWithRed:(68/255.0) green:(82/255.0) blue:(120/255.0) alpha:1];
lblRound.shadowOffset = CGSizeMake(0, 0);

また、必要な色で別のラベルを作成してテキストの後ろに描画しようとしましたが、テキストのサイズで遊んでいると、すべてのテキストの幅に影響します。ストロークを太くするにはどうすればよいですか?

このテキストには可変である必要がある数値があるため、画像を使用できません。

ありがとう

4

1 に答える 1

2

これが解決策です:

- (void)drawRect:(CGRect)rect
{
    UIFont *font=[UIFont fontWithName:@"VAGRoundedStd-Bold" size:40];
    CGContextRef context = UIGraphicsGetCurrentContext();

    string = lblRoundnumber;

    CGSize fontWidth = [string sizeWithFont:font];

    CGRect tempRect=rect;
    tempRect.origin.x +=160-(fontWidth.width/2);
    tempRect.origin.y +=high+42;

    CGContextSetRGBStrokeColor(context, 68/255.0f, 82/255.0f, 120/255.0f, 1/1.0f);  
    CGContextSetRGBFillColor(context, 68/255.0f, 82/255.0f, 120/255.0f, 1/1.0f);
    CGContextSetTextDrawingMode(context, kCGTextStroke);
    CGContextSetLineWidth(context, 11);
    [string drawInRect:tempRect withFont:font];

    CGContextSetRGBFillColor(context, 1,1,1,1);
    CGContextSetTextDrawingMode(context, kCGTextFill);
    [string drawInRect:tempRect withFont:font];
}
于 2013-09-23T09:58:58.250 に答える