コード化されたNSPointをエンコードして返します
解説
コード化されたNSPointをエンコードして返します。サブクラスは、このメソッドにオーバーライドしてはいけません。
返り値
( NSPoint )
位置
引数
フレームワーク
Foundation
クラス
NSCoder
Instance Methods
使用可能
10.0
参照
例文
#import "MyView.h" @implementation MyView //アンアーカイブするときの手順の記述 - (id)initWithCoder:(NSCoder *)decoder { NSPoint point; NSLog(@"initWithCoder"); [super initWithCoder:decoder]; point = [decoder decodePoint]; NSLog([NSString stringWithFormat:@"point = %.1f,%.1f",point.x,point.y]); return self; } //アーカイブするときの手順の記述 - (void)encodeWithCoder:(NSCoder *)encoder { NSLog(@"encodeWithCoder"); [super encodeWithCoder:encoder]; [encoder encodePoint:NSMakePoint(10,10)]; return; } @end