if im using
settings = [NSUserDefaults standardUserDefaults];
in my view controller, will using
settings = [NSUserDefaults standardUserDefaults];
in my app delegate (2 different properties in 2 different files) have this
[settings objectForKey:@"location"];
return the same value? Thanks.
YES. That is the purpose of standardUserDefaults.