在我的 iOS 应用程序中,我在另一个视图中定义了三个 Web 视图。可能并不总是使用其中两个 Web 视图,那么有没有办法让剩余的视图填满屏幕的其余部分?当您使用“fill_parent”时,android 中的等价物。
现在我正在通过改变框架来完成这一切,这真的很麻烦。
// There is no top banner, but it does use the footer
topBannerView.frame = CGRectMake(0, 0, 320, 0);
mainView.frame = CGRectMake(0, 0, 320, 400);
footerView.frame = CGRectMake(0, 400, 320, 60);
有没有办法让 mainView 在不明确设置框架的情况下使用屏幕的其余部分?