attributedStringForObjectValue:withDefaultAttributes:
属性の辞書によって、属性付き文字列を返します
-(NSAttributedString *)attributedStringForObjectValue:(id)anObject: withDefaultAttributes:(NSDictionary *)attributes:
解説
属性の辞書によって、属性付き文字列を返します。
サブクラスでオーバーライドされます。
返り値
( NSAttributedString * )
属性付き文字列
引数
( id )anObject
オブジェクト
( NSDictionary * )attributes
属性の辞書
フレームワーク
Foundation
クラス
NSFormatter
Instance Methods
使用可能
10.0
参照
- editingStringForObjectValue:
例文
//属性付き文字列 -(NSAttributedString *)attributedStringForObjectValue: (id)anObject withDefaultAttributes: (NSDictionary *)attributes { NSLog([NSString stringWithFormat:@"attributed %.3f",[anObject floatValue]]); return [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%.3f", [anObject floatValue]]]; }