AP102 2016/5/9 alert 克凡
- (IBAction)clicked {
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleActionSheet];
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
UIAlertAction *ok2Action = [UIAlertAction actionWithTitle:@"OK2" style:UIAlertActionStyleDefault handler:nil];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:nil];
[alertController addAction:okAction];
[alertController addAction:ok2Action];
[alertController addAction:cancelAction];
[self presentViewController:alertController animated:YES completion:nil];
}
Comments
Post a Comment