File tree 1 file changed +3
-3
lines changed
SQManagement/SQManagement/UI
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,20 +36,20 @@ - (void)viewDidLoad {
36
36
__weak typeof (self) weakSelf = self;
37
37
[self .headerView whenTapped: ^{
38
38
UIImagePickerController *imagePickerVc = [[UIImagePickerController alloc ] init ];
39
- imagePickerVc.delegate = self ;
39
+ imagePickerVc.delegate = weakSelf ;
40
40
imagePickerVc.allowsEditing = YES ;
41
41
UIAlertController *alertVc = [UIAlertController alertControllerWithTitle: nil message: nil preferredStyle: (UIAlertControllerStyleActionSheet)];
42
42
[alertVc addAction: [UIAlertAction actionWithTitle: @" 立即拍摄照片" style: (UIAlertActionStyleDefault) handler: ^(UIAlertAction * _Nonnull action) {
43
43
if ([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypeCamera]){
44
44
imagePickerVc.sourceType = UIImagePickerControllerSourceTypeCamera;
45
45
imagePickerVc.cameraDevice = UIImagePickerControllerCameraDeviceRear;
46
- [self presentViewController: imagePickerVc animated: YES completion: nil ];
46
+ [weakSelf presentViewController: imagePickerVc animated: YES completion: nil ];
47
47
}
48
48
}]];
49
49
[alertVc addAction: [UIAlertAction actionWithTitle: @" 从相册中获取" style: (UIAlertActionStyleDefault) handler: ^(UIAlertAction * _Nonnull action) {
50
50
if ([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypePhotoLibrary]){
51
51
imagePickerVc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
52
- [self presentViewController: imagePickerVc animated: YES completion: nil ];
52
+ [weakSelf presentViewController: imagePickerVc animated: YES completion: nil ];
53
53
}
54
54
}]];
55
55
[alertVc addAction: [UIAlertAction actionWithTitle: @" 取消" style: (UIAlertActionStyleCancel) handler: nil ]];
You can’t perform that action at this time.
0 commit comments