2013-07-08 87 views
0

我加載我的看法的一個模態像instantiateViewControllerWithIdentifier,不加載視圖正確

ZViewController *zoomVC = [self.storyboard instantiateViewControllerWithIdentifier:@"ZVC"]; 

這種觀點有一個UIScrollView,並在滾動視圖的ImageView的,我都通過界面生成器中加入故事板。 我遇到的問題是,雖然我有ZVC所有這些控件的大小和位置,當我在ZVC中點擊viewdidload時,它們都是0?

我試着執行awakefromnib和initwithNibname,但沒有任何!

+2

是控制實際的尺寸不合適,或者僅僅是日誌? viewDidLoad查看幀(self.view除外)還爲時過早。嘗試登錄viewDidAppear: – rdelmar

+0

謝謝,這是一個紅色的鯡魚,你是正確的。 – funkycoldmedia

回答

0

後:

ZViewController *zoomVC = [self.storyboard instantiateViewControllerWithIdentifier:@"ZVC"]; 

試試這個:

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