NSUserDefaults sounds like what you're looking for. According to Apple's documentation, "The NSUserDefaults class provides a programmatic interface for interacting with the defaults system. The defaults system allows an application to customize its behavior to match a user’s preferences." You can use NSUserDefaults in a global manner.
To do this, you need to first create an NSUserDefaults object:
NSUserDefaults *myAppDefaults = [NSUserDefaults myAppDefaults];
To save data to the defaults system, you would do something similar to the line below:
[standardDefaults setObject:@"Smith" forKey:@"lastName"];
Finally, you can retrieve your data from the defaults system by storing it in a variable. The line below shows how to set an NSString to be the value you originally stored:
NSString *lastName = [standardDefaults stringForKey:@"lastName"];