gpt4 book ai didi

iphone - 如何以编程方式创建 UIScrollView?

转载 作者:IT老高 更新时间:2023-10-28 11:46:41 25 4
gpt4 key购买 nike

好的,这里的关键是我根本没有使用 IB,因为我正在使用的 View 是通过编程方式创建的。 UIView 覆盖了屏幕的下半部分,上面有一堆按钮。但是,我想在 UIView 中添加更多按钮,而不使其变得更大。为此,我想在 View 中创建一个 UIScrollView,这将允许我在屏幕外添加更多按钮,以便用户可以滚动到它们。我认为这就是它的工作原理。

self.manaView = [[[UIView alloc] initWithFrame:frame] autorelease];
self.manaView.backgroundColor = [UIColor purpleColor];

UIScrollView *scroll = [UIScrollView alloc];
scroll.contentSize = CGSizeMake(320, 400);
scroll.showsHorizontalScrollIndicator = YES;
[self.manaView addSubview:scroll];

代码的第一部分启动了我的 UIView,效果很好,但我不知道如何以编程方式制作 UIScrollView 并将其添加到 View 中,然后向其中添加按钮。

UIButton *ret2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
ret2.tag = 102;
ret2.frame = CGRectMake(255, 5, 60, 50);
[ret2 setTitle:@"Return" forState:UIControlStateNormal];
[ret2 addTarget:self action:@selector(flipAction:) forControlEvents:UIControlEventTouchUpInside];
[scroll addSubview:ret2];

当我这样做时,按钮从我的屏幕上消失了。那么我该如何正确地做到这一点呢?感谢您的帮助!

最佳答案

代替:

UIScrollView *scroll = [UIScrollView alloc];

执行此操作(将框架设置为您希望 ScrollView 的大小):

UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:...];

关于iphone - 如何以编程方式创建 UIScrollView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2998336/

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