gpt4 book ai didi

iphone - 如何在 iPhone 中调整 UINavigationController 的大小?

转载 作者:行者123 更新时间:2023-12-03 19:11:04 26 4
gpt4 key购买 nike

我已经使用 UINavigationController 创建了一个应用程序,它看起来很好,现在我想将 NavigationController 的大小设置为较小的大小。我该怎么做?

最佳答案

如果通过代码添加,则可以调整 UINavigatorController 的大小或移动...

    - (void)viewDidLoad
{
[super viewDidLoad];
myview_view = [[[MyCustomView alloc] init]autorelease];
ControlNav = [[UINavigationController alloc] initWithRootViewController:myview_view]; // Init the UINavigatorController
ControlNav.navigationBarHidden = YES; // Hide the navigation bar
ControlNav.view.frame = CGRectMake(50, 50, 665, 370); // Move and resize the UINavigator Controller
[self.view addSubview:ControlNav.view]; // Add subview
}

MyCustomView 是一个 UIViewController;

关于iphone - 如何在 iPhone 中调整 UINavigationController 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2826507/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com