1.UIAlertController支持IOS9或者更高版本
//提示框
showSelection = [UIAlertController
alertControllerWithTitle: @"已经选择了"
message:flowerMessage
preferredStyle: UIAlertControllerStyleAlert];
//提示框--按钮
[showSelection addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
NSLog(@"UIAlertController OK CLICKED!");
}]];
//弹出提示框;
[self presentViewController:showSelection animated:true completion:nil];
2. UIAle