Return Value 戻り値
An autoreleased NSColor
object. Returns nil
if the archived color is invalid.
オートリリースされたNSColor
オブジェクト。nil
を返します、もしアーカイブされたカラーが無効ならば。
Availability 有効性
Technology
- (NSColor
*)decodeNXColor;
An autoreleased NSColor
object. Returns nil
if the archived color is invalid.
オートリリースされたNSColor
オブジェクト。nil
を返します、もしアーカイブされたカラーが無効ならば。
This method does not have a matching method for encoding an NXColor
structure. Encode an NSColor
object instead.
このメソッドは、NXColor
構造体をエンコードすることに対する合致するメソッドを持っていません。NSColor
オブジェクトを代わりにエンコードしてください。
NXColor
, a type that dates from pre-OpenStep versions of NEXTSTEP, was a struct
. Its replacement, NSColor
, is a class. The difficulties of converting from a struct
to a class require a special method like decode
.
NEXTSTEPの前OpenStep版にさかのぼる型、NXColor
は、struct
でした。それの置き換えNSColor
は、クラスです。struct
からクラスへ変換することの困難は、decode
のような特別なメソッドを必要とします。
The decode
method becomes part of the NSCoder
class only for apps that use AppKit.
decode
メソッドは、AppKitを使うアプリに対してのみ、NSCoder
クラスの部分となります。