I've released an app for iOS6 (deployment target: 6.1, SDK 6.1) but now wish to make the app for iOS5 because I realize how many users still have iOS5 to keep the old native Google Maps. I understand I'll have to remove any iOS6-only features such as auto layout and UICollectionView
which is okay by me.
My question is, in Xcode, what do I need to configure? Do I modify the deployment target and SDK to read 5.x? Will the Apple Review Board reject my app if I do this?
I'm trying to avoid doing "if device is iOS6 then, else if device is iOS5 then" because it sounds messy when trying to build so I've decided to just make the entire app 100% iOS5 to keep things simpler.