I am trying to access an NSUserDefault called prefs from multiple views. I am allocating prefs in one view but I don't know how to access it without just reallocating a new NSUserDefault in the second view.
Also, my operating system is ios.
Here is my FlipSideViewController Function:
The function in my FlipSideViewController: 'NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
- (IBAction) changeRate:(id)sender {
if (rate.selectedSegmentIndex == 1){
[prefs setInteger:1 forKey:@"myRate"];//save
}
else if (rate.selectedSegmentIndex == 2){
[prefs setInteger:2 forKey:@"myRate"];//save
}
[[NSUserDefaults standardUserDefaults] synchronize];
};
And this is the MainViewController function:
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
// [prefs setValue: @"0" forKey: @"myRate"];
if (!([prefs valueForKey: @"myRate"])){
[prefs setInteger:0 forKey: @"myRate"];
}
[prefs setInteger:2 forKey: @"myRate"];
int rateOption = [[prefs valueForKey: @"myRate"] intValue];
if (rateOption == 1)
{
dayOrHourly.text = @"% of Day:";
percentOrHours.hidden = YES;
hours.hidden = YES;
dayPercentage.hidden = NO;
}
else if (rateOption == 2)
{
dayOrHourly.text = @"# of Hours:";
percentOrHours.hidden = NO;
dayPercentage.hidden = YES;
}

UISegmentedControlyou're using. – Deepak Danduprolu Jun 9 '11 at 5:04