I'm writing my first iOS app. I need to take the user's ship to/delivery addresses and phone number.
Is it safe to use NSUserDefaults?
I'm trying to keep this simple as I only need to save very basic data like name, delivery address, phone number.
[[NSUserDefaults standardUserDefaults] integerForKey:@"customerCity"]
Is this persistent across version upgrades?
Would the App Store reject the app for having user enter the delivery address and phone number?