My app needs to support iOS version >= 5.0.1. I can't support <= 5.0 because I need to set the "Don't BackUp" flag for the data downloaded!
How do I set the minimum iOS version required to 5.0.1?
My app needs to support iOS version >= 5.0.1. I can't support <= 5.0 because I need to set the "Don't BackUp" flag for the data downloaded!
How do I set the minimum iOS version required to 5.0.1?
That flag was introduced in iOS 5.1, so you'll have to change your deployment target to 5.1 to be able to do that.
Use it:
One thing is that it won't tell you if it doesn't work on a certain version. You'll have to compare your methods with which ones are available in each version manually.
You can help curb this by changing your Base SDK too: