I wrote the following code to store variables in a class for later access from another class:
SettingsController.h
@interface SettingsController : NSObject
@property (nonatomic) BOOL isHighway;
@property (nonatomic) BOOL isToll;
@property (nonatomic) BOOL isVoiceNavigation;
@property (nonatomic) BOOL isVoiceCommand;
-(id)initWithHighway:(BOOL)_isHighway;
-(id)initWithToll:(BOOL)_isToll;
-(id)initWithVoiceNavigation:(BOOL)_isVoiceNavigation;
-(id)initWithVoiceCommand:(BOOL)_isVoiceCommand;
-(BOOL)isHighwayOn;
-(BOOL)isTollOn;
-(BOOL)isVoiceNavigationOn;
-(BOOL)isVoiceCommandOn;
@end
SettingsController.m
@implementation SettingsController
@synthesize isHighway,isToll,isVoiceNavigation,isVoiceCommand;
-(id)initWithHighway:(BOOL)_isHighway{
if ((self = [super init])) {
self.isHighway = _isHighway;
}
return self;
}
-(id)initWithToll:(BOOL)_isToll{
if ((self = [super init])) {
self.isToll = _isToll;
}
return self;
}
-(id)initWithVoiceNavigation:(BOOL)_isVoiceNavigation{
if ((self = [super init])) {
self.isVoiceNavigation = _isVoiceNavigation;
}
return self;
}
-(id)initWithVoiceCommand:(BOOL)_isVoiceCommand{
if ((self = [super init])) {
self.isVoiceCommand = _isVoiceCommand;
}
return self;
}
-(BOOL)isHighwayOn{
return self.isHighway;
}
-(BOOL)isTollOn{
return self.isToll;
}
-(BOOL)isVoiceNavigationOn{
return self.isVoiceNavigation;
}
-(BOOL)isVoiceCommandOn{
return self.isVoiceCommand;
}
@end
From my SettingsViewController Class, I'm initializing values as follows:
SettingsController *settingsController = [[SettingsController alloc] initWithHighway:isHighways];
and access them as
BOOL isHighway = [settingsController isHighwayOn];
But if I'm trying to access those variable from another class, RouteViewController as follows:
SettingsController *settingsController = [[SettingsController alloc] init];
BOOL isHighway = [settingsController isHighwayOn];
It always give me 0 and I never get 1.
Could anyone please help me in accessing those variables?
EDIT
OK, I've removed the SettingsController and taking its interface to the RouteViewController. I'm initializing from SettingsViewController as follows:
RouteViewController *routeController = [[RouteViewController alloc] initWithHighway:isHighways];
then accessing it from RouteViewController by simply:
NSLog(@"Highway: %d",self.isHighway);
Even then it always giving me 0 never 1.
EDIT
For just maintaining these 4 UISwich in my SettingsViewController I'm now using NSUserDefaults. I think it's a better way to do so... Thanks for all of your help...
