问题:在一个图片浏览器放大当前图片的时候,点击删除,出现提示框是否删除图片
解决方案:
一.使用UIAlertView解决(ps:这是ios8以前的方法)
//点击事件
- (void)photoBrowserButtons:(CHPhotoBrowserButtons *)buttons deleteBtn:(UIButton *)deleteBtn {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"你确定要删除照片吗?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles: @"确定",