新 View Controller 的 iOS addSubview 不起作用
<p><p>我正在尝试做这样的事情 - </p>
<pre><code>- (void)viewDidLoad {
;
ThingViewController *thingViewController = ;
thingViewController.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
UIView *view = ;
;
}
</code></pre>
<p>它只是给我一个白屏,里面什么都没有。如果我在导航堆栈上推送新的 ViewController ,它会正确显示 Controller 。知道我可能缺少什么吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您应该在 <code>viewDidLayoutSubviews</code> 上设置 thingViewController 框架。
<code>viewDidLoad</code> 此时没有正确设置帧:</p>
<pre><code>- (void)viewDidLoad {
;
ThingViewController *thingViewController = ;
UIView *view = ;
;
}
- (void)viewDidLayoutSubviews {
;
thingViewController.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
}
</code></pre></p>
<p style="font-size: 20px;">关于新 ViewController 的 iOS addSubview 不起作用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/31459063/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/31459063/
</a>
</p>
页:
[1]