2017-09-01 126 views

回答

0

嘗試下面的代碼,這將刪除警告

- (instancetype)initWithFrame:(CGRect)ignoreframe { 
    self = [super initWithFrame:ignoreframe]; 
    if (self) { 
     // load view frame XIB 
    } 
    return self; 
} 

要了解更多詳細,看here

相關問題