[iphone] presentModalViewController : Animated는 ios6에서 더 이상 사용되지 않습니다.

이미지 선택기에 다음 코드를 사용하고 있습니다. 그러나 시뮬레이터에서 실행하면 메모리 누수가 발생하고 presentModalViewcontroller:animatediOS6에서 더 이상 사용되지 않는다는 경고가 표시 됩니다. 나는 또한 dismissModalViewController:animated더 이상 사용되지 않습니다. SDK 6.1을 사용하고 있습니다.

ImagePicker 용 코드 :

- (void)showAlbum:(id)sender { 
    imagePicker=[[UIImagePickerController alloc]init];
    imagePicker.delegate = self;
    imagePicker.allowsEditing =NO;
    imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    [self presentModalViewController:imagePicker animated:YES];
}

- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{
    //release picker
    [picker dismissModalViewControllerAnimated:YES];
}



답변

이 줄을 사용하고 확인하십시오.

[self presentViewController:imagePicker animated:YES completion:nil];


답변

[[Picker presentingViewController] dismissViewControllerAnimated:YES completion:nil];

대신에

 [[Picker parentViewControl] dismissModalViewControllerAnimated:YES];

[self presentViewController:picker animated:YES completion:nil];

대신에

[self presentModalViewController:picker animated:YES];


답변

Vishal이 언급했듯이

[self presentViewController:imagePicker animated:YES completion:nil];
[self dismissViewControllerAnimated:YES completion:nil];

“completion : nil”도 추가했는지 확인하십시오.


답변

if ([self respondsToSelector:@selector(presentViewController:animated:completion:)])
{
    [self presentViewController:objSignupViewController animated:^{} completion:nil];
}
else
{
    [self presentModalViewController:objSignupViewController animated:YES];
}


답변

사용하다:

[self presentViewController:imagePicker animated:YES completion:nil];

그리고 해고 모달 사용을 위해 :

[self dismissViewControllerAnimated:controller completion:nil];

또는

[self dismissViewControllerAnimated:YES completion:nil];


답변