我正在尝试在 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];
这是一个截图(没有分页,滚动):
但没有滚动/分页。有什么我做错了吗?这甚至可能吗?
提前谢谢