gpt4 book ai didi

ios - UIScrollView 和 UINavigationController 不适用于 iOS 4

转载 作者:行者123 更新时间:2023-11-28 17:32:19 24 4
gpt4 key购买 nike

我在使用 UIScrollView 和 UINavigationController(s) 以及 iOS 4 时遇到问题。以下代码适用于 iOS 5:

 ////////////////////////////////////////////////////////////////////////////////////
/* Scroll View */
////////////////////////////////////////////////////////////////////////////////////
mScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 88, 1024, 668)];
mScrollView.contentSize = CGSizeMake(1850, 668);

////////////////////////////////////////////////////////////////////////////////////
// First View
////////////////////////////////////////////////////////////////////////////////////
UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed: @"view_bg.png"]];
imgView.frame= CGRectMake(10, 50, 350, 510);
[mScrollView addSubview:imgView];
[imgView release];

mFirstView = [[[FirstView alloc] init] autorelease];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:mFirstView];
navigationController.navigationBar.tintColor = [UIColor colorWithRed:79.0/255 green:143.0/255 blue:0.0/255 alpha:1];
navigationController.view.frame = CGRectMake(25, 65, 320, 480);
[mScrollView addSubview:navigationController.view];

////////////////////////////////////////////////////////////////////////////////////
// Second View
////////////////////////////////////////////////////////////////////////////////////
UIImageView *imgView2 = [[UIImageView alloc] initWithImage:[UIImage imageNamed: @"view_bg.png"]];
imgView2.frame= CGRectMake(380, 50, 350, 510);
[mScrollView addSubview:imgView2];
[imgView2 release];

mSecondView = [[[SecondView alloc] init] autorelease];
UINavigationController *navigationController2 = [[UINavigationController alloc] initWithRootViewController:mSecondView];
navigationController2.navigationBar.tintColor = [UIColor colorWithRed:79.0/255 green:143.0/255 blue:0.0/255 alpha:1];
navigationController2.view.frame = CGRectMake(395, 65, 320, 480);
[mScrollView addSubview:navigationController2.view];

// finally add the scroll view to the parent view
[self.view addSubview:mScrollView];

我所做的就是添加一个带有 2 个 NavigationController(带有分配的 Root View Controller )的 ScrollView 来执行 View 。但是在 iOS 4 中使用此代码不会显示添加的 ViewControllers 的正确大小。 ViewControllers 是整个 iPad 屏幕的大小!!!!!

正如我已经说过的,它适用于 iOS 5!即使我更改手动添加的 View 的大小时它也不起作用,添加的 View 总是填满整个 iPad 屏幕!!有解决此问题的想法吗?

提前致谢!

最佳答案

在你的代码中你有以下内容

//first view you add mfirstview.view
[mScrollView addSubview:mFirstView.view];

//second view you add navigationController2.view
[mScrollView addSubview: navigationController2.view];

所以我猜你必须更改第一个 View 代码才能执行以下操作

[mScrollView addSubview: navigationController.view];

关于ios - UIScrollView 和 UINavigationController 不适用于 iOS 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10884036/

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