ユーザーデフォルトにBOOL値を保存します
-(void)setBool:(BOOL)value: forKey:(NSString *)defaultName:
解説
ユーザーデフォルトにBOOL値を保存します。
返り値
( void )
なし
引数
( BOOL )value
保存するBOOL値
( NSString * )defaultName
取り出すときに必要なキー
フレームワーク
Foundation
クラス
NSUserDefaults
Instance Methods
使用可能
10.0
参照
- boolForKey:
例文
#import "SetImage.h" @implementation SetImage - (IBAction)set:(id)sender { BOOL boo1 = YES; BOOL boo2 ; NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setBool : boo1 forKey : @"settei1"]; boo2 = [defaults boolForKey:@"settei1"]; if(boo2){ NSLog(@"YES"); }else{ NSLog(@"NO"); } } @end