decodeInt64ForKey:
アーカイブからキーで64ビット整数値をデコードします
-(int64_t)decodeInt64ForKey:(NSString *)key Decodes:
解説
アーカイブからキーで64ビット整数値をデコードします。
返り値
( int64_t )
整数値
引数
( NSString * )key Decodes
キー
フレームワーク
Foundation
クラス
NSKeyedUnarchiver
Instance Methods
使用可能
10.0
参照
- encodeInt64:forKey: (NSKeyedArchiver)
例文
NSLog([NSString stringWithFormat:@"%x", [unarchiver decodeInt64ForKey:@"int64Val1"]]);