重複?キーで整数値をデコードします
-(int)decodeIntForKey:(NSString *)key:
解説
キーで整数値をデコードします。
返り値
( int )
整数値
引数
( NSString * )key
フレームワーク
Foundation
クラス
NSCoder
Instance Methods
使用可能
10.2
参照
例文
#import "MyView.h" @implementation MyView //アンアーカイブするときの手順の記述 - (id)initWithCoder:(NSCoder *)decoder { NSLog([NSString stringWithFormat:@"%d",[decoder decodeIntForKey:@"key"]]); [super initWithCoder:decoder]; return self; } //アーカイブするときの手順の記述 - (void)encodeWithCoder:(NSCoder *)encoder { [encoder encodeInt:123456 forKey:@"key"]; [super encodeWithCoder:encoder]; } @end