
これはカメラアプリです。
このアプリの機能は
・全画面表示
・ライトのON/OFF
・フラッシュのON/OFF
Is the camera app.
ab-Camera Features
•"Full screen"
•"Configuring the flash ON / OFF"
•"Configuring the Torch ON / OFF"
iPhone4 iOS アプリ開発
保存方法
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
// BOOL保存
[defaults setBool:YES forKey:@"BOOL"];
// 文字列保存
[defaults setObject:@"TESTSTRING" forKey:@"STRING"];
// 数値保存
[defaults setInteger:20100917 forKey:@"INTEGER"];
読み込み
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
// BOOL読み込み
BOOL bool = [defaults boolForKey:@"BOOL"];
// 文字列読み込み
NSString* string = [defaults stringForKey:@"STRING"];
// 数値の読み込み
int integer = [defaults integerForKey:@"INTEGER"];