如图所示,我有ContentViewController,PageViewController和WelcomeController。你可以看到,我的WelcomeController上有按钮,位于底部。
使用代码:http://pastebin.com/Kf70RQWM
我将带有ContentView的PageView放入我的WelcomeController,但它覆盖了我的整个屏幕。我确实试过用这个:
self.pageViewController.view.frame = CGRectMake(0, 0, self.view.frame.width, self.view.frame.size.height - 50)
我的按钮有50px的空间,但在这种情况下,我得到了下一个:
黑色背景而不是我的按钮。
问题:如何将按钮放到那些黑色空间?