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

initRequiringSecureCoding:

Creates an archiver to encode data, and optionally disables secure coding. あるアーカイバを作成してデータをエンコードします、そして随意にセキュアコーディングを作動しないようにします。

Declaration 宣言

- (instancetype)initRequiringSecureCoding:(BOOL)requiresSecureCoding;

Parameters パラメータ

requiresSecureCoding

A Boolean value indicating whether all encoded objects must conform to NSSecureCoding. 全ての符号化されたオブジェクトがNSSecureCodingに準拠しなければならないかどうかを指し示しているブール値。

Discussion 議論

To prevent the possibility of encoding an object that NSKeyedUnarchiver can’t decode, set requiresSecureCoding to YES whenever possible. This ensures that all encoded objects conform to NSSecureCoding. NSKeyedUnarchiverが復号できないあるオブジェクトの符号化の可能性を妨げるには、requiresSecureCodingを可能な時はいつでもYESに設定してください。これは、全ての符号化されたオブジェクトがNSSecureCodingに準拠することを確実にします。

See Also 参照

Creating a Keyed Archiver キー付きアーカイバを作成する

Related Documentation 関連文書