UIAlertController关于ActionSheet的用法

// 1.创建一个UIAlertController,注意用类方法创建的形式创建,选择AlertControllerStyle为ActionSheet
 UIAlertController * sheet = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:(UIAlertControllerStyleActionSheet)];
   
// 2.给 ActionSheet 添加动作,可以在回调的block中写相关代码
    [sheet addAction:[UIAlertAction actionWithTitle:@"收藏" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) {
        
    }]];
    [sheet addAction:[UIAlertAction actionWithTitle:@"举报" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) {
        
    }]];
// 注意:如果选择UIAlertActionStyleCancel这个款式,则该action是取消按钮,独立于其它的action。而其他的action都是黏在一起的。
    [sheet addAction:[UIAlertAction actionWithTitle:@"取消" style:(UIAlertActionStyleCancel) handler:^(UIAlertAction * _Nonnull action) {
        
    }]];
    [ZHJCurrentVc presentViewController:sheet animated:YES completion:nil];

你可能感兴趣的:(UIAlertController关于ActionSheet的用法)