/ Published in: Objective C
Use like this: [self showConfirmation:@"May we send you information and offers by Email?" withMessage:@"1 email per week maximum"];
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
UIAlertView* confirmationView = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:NSLocalizedString(@"No", @"") otherButtonTitles:NSLocalizedString(@"Yes", @""), nil]; [confirmationView show]; [confirmationView release]; }