The real problem lays in the default trained behavior of the user - leave a review if _anything_.<p>Both app developers and Apple have wrongly been pushing users to voice opinions publicly in app reviews, leaving app developers exposed with no way to communicate with those users.<p>The real solution is to start pushing users to communicate their suggestions and issues privately, in the app, where you can better manage conversations, keep users engaged, and establish relationships that can turn upset users into long-term evangelists.<p>1) Do not bury support or email buttons multiple taps deep. Surface a contact button so that it's easier for users to contact you.<p>2) Do not ask users to fill out more than a single field to send you their thoughts. Automatically capture user ID, device, platform, OS version, app version, etc. by passing a unique session or user ID.<p>3) Keep them in your app, engaged, and talking. Think of this more like "user relations", not "user support". You need them engaged and sharing their thoughts more than they need you and your app.<p>In terms of what can be done now for helping to avoid iOS 7 app reviews, here are a few suggestions:<p>1) Add an alert for iOS 7 users that your app is not yet compatible: <a href="http://mobile.tutsplus.com/tutorials/iphone/uialertview/" rel="nofollow">http://mobile.tutsplus.com/tutorials/iphone/uialertview/</a><p>2) Here's an example:<p>[[UIAlertView alloc]
initWithTitle:@"Unsupported iOS Version"
message: @"This version of the app is untested on this version of iOS, please check for an update in the app store."
delegate: self
cancelButtonTitle:@"Skip"
otherButtonTitles:@"App Store",nil];<p>2) If you have an email list of your users, send them an email with when they can expect the OS update. Users will expect a great, new experience with iOS 7 and will be deleting apps that don't meet their expectations. You can't expect users to keep using your app when there is so much new "eye candy" on the App Store.<p>P.S. Stuart from Appbot actually covered this with a scary screenshot of iOS7 reviews only one week into Beta1: <a href="http://stuartkhall.com/posts/stop-allowing-app-reviews-from-beta-ios-versions" rel="nofollow">http://stuartkhall.com/posts/stop-allowing-app-reviews-from-...</a>