sheet

来源:互联网 发布:appstore无法下载软件 编辑:程序博客网 时间:2024/06/14 01:24

 UIAlertController *sheet = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    UIAlertAction *paizhaoAlert = [UIAlertAction actionWithTitle:@"拍照" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        
        
        
    }];
    [sheet addAction:paizhaoAlert];
    
    UIAlertAction *xiangceAlert = [UIAlertAction actionWithTitle:@"相册" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
         [self selectSheetAction:UIImagePickerControllerSourceTypePhotoLibrary];
     
        
    }];
    [sheet addAction:xiangceAlert];
    UIAlertAction *cancleAlert = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        
       
        
    }];
    [sheet addAction:cancleAlert];
    
    [self presentViewController:sheet animated:YES completion:nil];



0 0
原创粉丝点击