24

UIViewサブクラスで色付きのテキストを描画しようとしています。現在、Single View アプリ テンプレートを使用しています (テスト用)。drawRect:メソッド以外の変更はありません。

テキストは描画されますが、色を何に設定しても常に黒です。

- (void)drawRect:(CGRect)rect
{
    UIFont* font = [UIFont fontWithName:@"Arial" size:72];
    UIColor* textColor = [UIColor redColor];
    NSDictionary* stringAttrs = @{ UITextAttributeFont : font, UITextAttributeTextColor : textColor };

    NSAttributedString* attrStr = [[NSAttributedString alloc] initWithString:@"Hello" attributes:stringAttrs];

    [attrStr drawAtPoint:CGPointMake(10.f, 10.f)];
}

私も[[UIColor redColor] set]無駄に努力しました。

答え:

NSDictionary* stringAttrs = @{ NSFontAttributeName : フォント、NSForegroundColorAttributeName : textColor };

4

2 に答える 2

22

代わりにUITextAttributeTextColorを使用する必要がありますNSForegroundColorAttributeName。お役に立てれば!

于 2012-12-15T17:18:03.087 に答える
4

以下の方法で試すことができます。次の属性を使用して、UIView の右下隅にテキストを描画するのに役立ちます。

  • NSFontAttributeName - サイズ付きのフォント名
  • NSStrokeWidthAttributeName - ストローク幅
  • NSStrokeColorAttributeName - テキストの色

Objective-C - UIView にテキストを描画し、UIImage として返します。

    -(UIImage *) imageWithView:(UIView *)view text:(NSString *)text {

        UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);

        [view.layer renderInContext:UIGraphicsGetCurrentContext()];

        // Setup the font specific variables
        NSDictionary *attributes = @{
                NSFontAttributeName   : [UIFont fontWithName:@"Helvetica" size:12],
                NSStrokeWidthAttributeName    : @(0), 
                NSStrokeColorAttributeName    : [UIColor blackColor]
        };
        // Draw text with CGPoint and attributes
        [text drawAtPoint:CGPointMake(view.frame.origin.x+10 , view.frame.size.height-25) withAttributes:attributes];

        UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

        return img;
    }`

Swift - UIView にテキストを描画し、UIImage として返します。

    func imageWithView(view : UIView, text : NSString) -> UIImage {

        UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
        view.layer.renderInContext(UIGraphicsGetCurrentContext()!);
        // Setup the font specific variables
        let attributes :[String:AnyObject] = [
            NSFontAttributeName : UIFont(name: "Helvetica", size: 12)!,
            NSStrokeWidthAttributeName : 0,
            NSForegroundColorAttributeName : UIColor.blackColor()
        ]
        // Draw text with CGPoint and attributes
        text.drawAtPoint(CGPointMake(view.frame.origin.x+10, view.frame.size.height-25), withAttributes: attributes);
        let img:UIImage = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();
        return img;
    }`
于 2016-02-11T08:38:55.043 に答える