UIAlertController * alertControl = [UIAlertController alertControllerWithTitle:@"注意" message:@"我们有两种方式接收您的宝贵意见哦" preferredStyle:UIAlertControllerStyleAlert];
[alertControl addAction:[UIAlertAction actionWithTitle:@"联系我们" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
}]];
[alertControl addAction:[UIAlertAction actionWithTitle:@"去AppStore" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
}]];
[alertControl addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
}]];
[self presentViewController:alertControl animated:YES completion:nil];