0

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

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];

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

在此处输入图像描述

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

提前谢谢

4

1 回答 1

2

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

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

试试看

于 2013-01-24T03:41:39.713 回答