gpt4 book ai didi

ios - 在 ViewController 中嵌入 UIScrollView 并且没有分页

转载 作者:行者123 更新时间:2023-11-28 22:41:10 25 4
gpt4 key购买 nike

我正在尝试将 UIScrollView 嵌入到 UIViewController 中。我想启用滚动和分页。我有:

CGRect thirdRect=CGRectMake(0.0f, 50.0f, 200.0f, 200.0f);
self.myVC=[[UIScrollView alloc] initWithFrame:thirdRect];
self.myVC.pagingEnabled=YES;
self.myVC.scrollEnabled=YES;
//[self.myVC setBackgroundColor:[UIColor orangeColor]];

UIImage *myImage=[UIImage imageNamed:@"stina.jpg"];
UIImageView *jtImageView=[[UIImageView alloc] initWithImage:myImage];
[self.myVC addSubview:jtImageView];
[self.view addSubview:self.myVC];

这是一个屏幕截图(没有分页,滚动):

enter image description here

但是没有滚动/分页。我做错了什么吗?这可能吗?

提前谢谢

最佳答案

对于您的 UIScrollView,您应该设置内容大小,然后滚动将开始发生

self.myVC.contentSize = CGSizeMake(1000,1000);

试一试

关于ios - 在 ViewController 中嵌入 UIScrollView 并且没有分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14493553/

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