属性付きテキスト
@property(nonatomic, copy) NSAttributedString *attributedText
@NSCopying var attributedText: NSAttributedString?
解説
テキストフィールドの属性付きテキスト。
属性付きテキストを使用することで、部分的に色を変えたり、フォントやフォントサイズを変えることが出来ます。
設定値
@property(nonatomic, copy) NSAttributedString *attributedText
@NSCopying var attributedText: NSAttributedString?
フレームワーク
UIKit
クラス
UITextField
使用可能
iOS6.0
参照
NSAttributedString
UIFont
UIColor
関連記事(外部サイト)
例文
@IBOutlet weak var defaultTF: UITextField! //UITextField attributedText @IBAction func function003(sender: AnyObject) { var attrs = [NSForegroundColorAttributeName: UIColor.redColor(), NSFontAttributeName : UIFont.systemFontOfSize(19.0)] var aText : NSAttributedString = NSAttributedString(string: "属性付き文字", attributes: attrs) defaultTF.attributedText = aText }