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

时间:2013-01-24 03:40:22

标签: ios uiscrollview

我试图在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];

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

enter image description here

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

事先提前

1 个答案:

答案 0 :(得分:2)

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

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

试一试