我想在 NSUserDefault 中保存和检索值。我正在成功地保存和检索价值。但是当我去 cak 主页并再次进入我的班级时,该值没有被存储并且所有过程都再次完成。它不记得旧值。
我正在这样做——
-(void)ViewDidLoad{
A = 0; // int A; defone in .h
[self calling_Once];
}
-(void)calling_Once{
NSLog(@"A is: %d",A); // A is always zero when I leave this class and return Back to this class. This is my only problem. I want A=1; when I go back And return to this class but
NSInteger B = [[NSUserDefaults standardUserDefaults] integerForKey:@"save_Interger_Value_For_Formula_One"]; //is not able to remeber value. It gives A=0; B =0; When I come back to this class, I want It should return A=1; B=1; and remember old value like sqlite when I return to this class.
if (A==0) {
[self refreshButton];
NSLog(@"Before Increment A is: %d",A);
A++;
NSLog(@"After Increment A is: %d",A);
[[NSUserDefaults standardUserDefaults] setInteger:A forKey:@"save_Interger_Value_For_Formula_One"];
}
NSInteger B = [[NSUserDefaults standardUserDefaults] integerForKey:@"save_Interger_Value_For_Formula_One"];
B = A;
NSLog(@" B is: %d",B);
B = A;
NSLog(@" A is: %d",A);
}
任何想法或建议都将受到高度欢迎。