在ios中使用Aviary SDK,我按照教程中的步驟進行,但是在調用Viewdidload中的方法:
- (void)displayEditorForImage:(UIImage *)imageToEdit
{
AFPhotoEditorController *editorController = [[AFPhotoEditorController alloc] initWithImage:imageToEdit];
[editorController setDelegate:self];
[self presentViewController:editorController animated:YES completion:nil];
}
報出了如下警告:
Warning: Attempt to present <AFSDKViewController: 0x7e1aeb0> on <ViewController: 0x7934af0> whose view is not in the window hierarchy!
謝謝。
如果你Modal View Controller在ViewDidLoad 中,出現這樣的錯誤是由於view還沒有加載到窗體框架中。你可以在viewDidAppear
中調用那個方法。
但是如果每次view顯示都如此就會調用displayEditorForImagemethod
。