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];
これがスクリーンショットです(ページング、スクロールなし):
ただし、スクロール/ページングはありません。私が間違っていることはありますか?これは可能ですか?
thx事前に