macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

encodeSize:forKey:

キーでサイズ(NSSize)をコード化して返します
-(void)encodeSize:(NSSize)size:
         forKey:(NSString *)key:

解説

キーでサイズ(NSSize)をコード化して返します。
キー付きのアーカイブはNSKeyedArchiverとNSKeyedUnarchiverを使います。
サブクラスで-allowsKeyedCodingをオーバーライドしてYESを返さなければいけません。

返り値

( void )

なし

引数

( NSSize )size
( NSString * )key

クラス

NSCoder

Instance Methods

使用可能

10.2

参照

例文

#import "MyView.h"

@implementation MyView

//アンアーカイブするときの手順の記述
- (id)initWithCoder:(NSCoder *)decoder
{
    NSSize size = [decoder decodeSizeForKey:@"key"];
    
    NSLog([NSString stringWithFormat:@"size = %.1f,%.1f",size.width,size.height]);
    return self;
}
//アーカイブするときの手順の記述
- (void)encodeWithCoder:(NSCoder *)encoder
{
    [encoder encodeSize:NSMakeSize(10,10) forKey:@"key"];

}
@end