Instance Method インスタンスメソッド

decodeFloat(forKey:)

Decodes and returns a float value that was previously encoded with encode(_:forKey:) or encode(_:forKey:) and associated with the string key. あるfloat値を復号して返します、それは以前にencode(_:forKey:)またはencode(_:forKey:)で符号化されて文字列keyと結び付けられたものです。

Declaration 宣言

func decodeFloat(forKey key: String) -> Float

Discussion 議論

If the value was encoded as a double, the extra precision is lost. If the encoded real value does not fit into a float, the method raises an NSRangeException. Subclasses must override this method if they perform keyed coding. 値がdoubleとして符号化されたならば、余分な精度は失われます。符号化されたreal値がfloatに収まらないならば、このメソッドはNSRangeExceptionを引き起こします。サブクラスは、それらがキー付きコーディングを実行するならば、このメソッドをオーバーライドする必要があります。

See Also 参照

Decoding General Data 一般的なデータを復号する