程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-有關Aviary SDK的問題

ios-有關Aviary SDK的問題

編輯:編程綜合問答
有關Aviary SDK的問題

在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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved