Skip to content

Commit 4cd05de

Browse files
committed
add
1 parent 410ca98 commit 4cd05de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SQManagement/SQManagement/UI/SQAddConnectionViewController.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ - (void)viewDidLoad {
3636
__weak typeof(self) weakSelf = self;
3737
[self.headerView whenTapped:^{
3838
UIImagePickerController *imagePickerVc = [[UIImagePickerController alloc] init];
39-
imagePickerVc.delegate = self;
39+
imagePickerVc.delegate = weakSelf;
4040
imagePickerVc.allowsEditing = YES;
4141
UIAlertController *alertVc = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:(UIAlertControllerStyleActionSheet)];
4242
[alertVc addAction:[UIAlertAction actionWithTitle:@"立即拍摄照片" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) {
4343
if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]){
4444
imagePickerVc.sourceType = UIImagePickerControllerSourceTypeCamera;
4545
imagePickerVc.cameraDevice = UIImagePickerControllerCameraDeviceRear;
46-
[self presentViewController:imagePickerVc animated:YES completion:nil];
46+
[weakSelf presentViewController:imagePickerVc animated:YES completion:nil];
4747
}
4848
}]];
4949
[alertVc addAction:[UIAlertAction actionWithTitle:@"从相册中获取" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction * _Nonnull action) {
5050
if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]){
5151
imagePickerVc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
52-
[self presentViewController:imagePickerVc animated:YES completion:nil];
52+
[weakSelf presentViewController:imagePickerVc animated:YES completion:nil];
5353
}
5454
}]];
5555
[alertVc addAction:[UIAlertAction actionWithTitle:@"取消" style:(UIAlertActionStyleCancel) handler:nil]];

0 commit comments

Comments
 (0)