macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

attributedStringForObjectValue:withDefaultAttributes:

属性の辞書によって、属性付き文字列を返します
-(NSAttributedString *)attributedStringForObjectValue:(id)anObject:
     withDefaultAttributes:(NSDictionary *)attributes:

解説

属性の辞書によって、属性付き文字列を返します。
サブクラスでオーバーライドされます。

返り値

( NSAttributedString * )

属性付き文字列

引数

( id )anObject

オブジェクト

( NSDictionary * )attributes

属性の辞書

クラス

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]]];

}