iRate
The one that I use and works wonders on iOS 5+ (also available for Mac OS X, but this answer is focused on the iOS portion) and up on all devices (iPad, iPhone, iPod Touch) is iRate.
It uses a uialertview and storekit to ask the user for a rating (or to remind them later). Everything is customizable, from the name of the Cancel Button Title to the Interval at which it reminds the user.
By default, iRate automatically opens when certain requirements are met (ex. app launched X number of times, user passed X number of levels), but you can also use a variety of methods and your own logic (with the help of iRate methods) to manually display an iRate popup.
Setup
To install, just drag the header (.H) file the implementation (.M) file, and the iRate Bundle (for localization) into your project.
- Import the header in your AppDelegate:
#import "iRate.h"
- Add the StoreKit Framework to your project
- Add the following method to your app delegate:
+ (void)initialize
- The properties below can be set in the
initialize method, however none of them are required (iRate can automatically find all of this information).
Properties
The property below is useful for testing purposes. Set it to YES during testing to make sure the dialog appears properly. When set to YES it will appear immediately on startup disregarding other display settings. Set this to NO for release versions of your app.
[iRate sharedInstance].previewMode = NO;
The appStoreID property allows you to set the ID of your app. This is only required if you have both Mac and iOS apps with the same Bundle Identifier. The App ID set here must also match the Bundle ID set in Xcode and iTunes Connect:
[iRate sharedInstance].appStoreID = 555555555;
More Details
Full documentation in the iRate files details all available properties, delegates, and methods. Here is an image of the final product:

Crittercism
If you use the Crittercism Crash Reporting service, they provide a simple way to display a Rate Us dialog. Just select your app on the Crittercism website, navigate to the settings tab, then select the "Rate Dialog" tab. This feature allows your app to setup a Rate Us dialog without using any code, as long as your app uses Crittercism. Also note, I am not related to or endorsed by Crittercism.