0

以下是否创建了一个强大的参考循环?我有一种感觉,这是因为我self在回调中引用。

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
    [picker dismissViewControllerAnimated:YES completion:^{
        UIImage *image = [self cropImageWithInfo:info];
        if (currentScreen == CurrentScreenApartment) {
            [self.profileViewModel.apartmentPhotos addObject:[RuntimePhoto runtimePhotoWithImage:image]];
        }
        else {
            [self.profileViewModel.userPhotos addObject:[RuntimePhoto runtimePhotoWithImage:image]];
        }
        dispatch_async(dispatch_get_main_queue(), ^{
            [self reloadPhotosCell];
        });
    }];
}
4

1 回答 1

0

您可以使用 self 的弱变量:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {

    typeof(self) __weak weakSelf = self;

    [picker dismissViewControllerAnimated:YES completion:^{
        UIImage *image = [weakSelf cropImageWithInfo:info];
        if (currentScreen == CurrentScreenApartment) {
            [weakSelf.profileViewModel.apartmentPhotos addObject:[RuntimePhoto runtimePhotoWithImage:image]];
        }
        else {
            [weakSelf.profileViewModel.userPhotos addObject:[RuntimePhoto runtimePhotoWithImage:image]];
        }
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf reloadPhotosCell];
        });
    }];
}
于 2018-04-27T02:03:36.060 回答