- stringForObjectValue:
- attributedStringForObjectValue:withDefaultAttributes:
nil
to indicate that the formatter object does not provide an attributed string.
省略時の実装は、nil
を返して、フォーマッタオブジェクトが属性付き文字列を提供しないことを指し示します。
stringForObjectValue:
.
このメソッドの省略時の実装は、stringForObjectValue:
を発動します。
Availability 有効性
Technology
- (NSString
*)editingStringForObjectValue:(id)obj;
anObject
The object for which to return an editing string. それに対して編集する文字列を返すことになるオブジェクト。
An NSString
object that is used for editing the textual representation of an
.
NSString
オブジェクト、それはan
のテキスト表現を編集するために使われます。
When implementing a subclass, override this method only when the string that users see and the string that they edit are different. In your implementation, return an NSString
object that is used for editing, following the logic recommended for implementing string
. As an example, you would implement this method if you want the dollar signs in displayed strings removed for editing.
サブクラスを実装する場合、ユーザが見る文字列と彼らが編集する文字列とが異なる場合にのみ、このメソッドをオーバーライドしてください。あなたの実装では、編集に使われるNSString
オブジェクトを、string
の実装に勧められる論理に従って、返してください。一例として、あなたが表示文字列でのドル符号を編集作業のため除去したいならば、あなたはこのメソッドを実装するでしょう。
- stringForObjectValue:
- attributedStringForObjectValue:withDefaultAttributes:
nil
to indicate that the formatter object does not provide an attributed string.
省略時の実装は、nil
を返して、フォーマッタオブジェクトが属性付き文字列を提供しないことを指し示します。