You can use something like this:
void AlertWithMessage(NSString *message) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Name of the Application" message:message delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil]; [alert show]; [alert release]; }
source share