UIAlertControllerStyleActionSheet 点击空白处不隐藏问题

来源:互联网 发布:一体机服务器设置端口 编辑:程序博客网 时间:2024/06/05 03:32

UIAlertControllerStyleActionSheet 点击空白处不隐藏问题


iOS8之后使用UIAlertController代替UIActionSheet,如果不添加取消按钮, 点击空白处则不隐藏弹框; 

所以点击空白处需要隐藏弹框的, 添加取消按钮即可.


UIAlertController *alert = [UIAlertControlleralertControllerWithTitle:nilmessage:nilpreferredStyle:UIAlertControllerStyleActionSheet] ;


[alert addAction:[UIAlertActionactionWithTitle:@“拍照style:UIAlertActionStyleDefaulthandler:^(UIAlertAction *_Nonnull action) {

            

}]] ;


[alert addAction:[UIAlertActionactionWithTitle:@“从相册选择照片style:UIAlertActionStyleDefaulthandler:^(UIAlertAction *_Nonnull action) {

            

}]] ;


[alert addAction:[UIAlertActionactionWithTitle:@"取消"style:UIAlertActionStyleCancelhandler:^(UIAlertAction *_Nonnull action) {

            

}]] ;


[selfpresentViewController:alertanimated:YEScompletion:^{

            

}] ;

1 0
原创粉丝点击