gpt4 book ai didi

UIScrollview 不滚动我做错了什么

转载 作者:行者123 更新时间:2023-12-04 04:53:07 24 4
gpt4 key购买 nike

我有一个问题,我将 UIScrolview 添加到我的 UIViewController,但我的 UIScrollview 不想滚动。我希望它的工作方式与在 UITableViewController 上的工作方式相同。

在这里我初始化我的 UIScrollview

UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 800)];
scroll.contentSize = CGSizeMake(320, 800);
scroll.backgroundColor = [UIColor redColor];
scroll.showsHorizontalScrollIndicator = YES;
scroll.scrollEnabled = YES;
scroll.userInteractionEnabled=YES;
[self.view addSubview:scroll];

在这里,我将我的内容添加到 ScrollView :
UILabel *memberNo = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 100, 20)];
memberNo.text = @"Member No";
memberNo.font = [UIFont boldSystemFontOfSize:16];
memberNo.textColor = [UIColor limeColor];
[scroll addSubview:memberNo];

memberText = [[UITextField alloc] initWithFrame:CGRectMake(10, 40, 300, 30)];
memberText.placeholder = @"Member No";
memberText.borderStyle = UITextBorderStyleRoundedRect;
memberText.text = @"1111111";
[scroll addSubview:memberText];

最佳答案

试试这个

设置内容大小大于屏幕大小,无论是否有更多内容,它都会滚动

UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 800)];

水平滚动
 scroll.contentSize = CGSizeMake(320, 900);

垂直滚动
scroll.contentSize = CGSizeMake(340, 800);

关于UIScrollview 不滚动我做错了什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17131698/

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