我正在将 ECSlidingViewController 用于 iPad 应用程序,我正在尝试获取 UINavigationController 作为母版页(菜单),它将在主 UIViewController 的左侧显示。
为此,UINavigationCONtroller 需要一个特定的宽度,否则它会变成不需要的全宽。
我正在使用情节提要并像这样加载视图控制器:
- (void)viewDidLoad
{
[super viewDidLoad];
// Setup the view controllers
self.topViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"MainTop"];
self.underLeftViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Menu"];
}
如何将其宽度限制为 320px?我知道我必须设置框架,它只是在哪里以及如何设置。