macOS/iOS API解説

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

目次

encodeInt:forKey:

INDEX>Foundation>NSCoder>

キーで整数値をエンコードします
-(void)encodeInt:(int)intv:
      forKey:(NSString *)key:

解説

キーで整数値をエンコードします

返り値

( void )

なし

引数

( int )intv

エンコードする整数値

( NSString * )key

キー

クラス

NSCoder

Instance Methods

使用可能

10.2

参照

-decodeIntForKey
-decodeInt32ForKey
int32値をデコード
-decodeInt64ForKey
int64値をデコード

例文

    [encoder encodeInt:123456 forKey:@"key"];