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

これがスクリーンショットです(ページング、スクロールなし):

ここに画像の説明を入力

ただし、スクロール/ページングは​​ありません。私が間違っていることはありますか?これは可能ですか?

thx事前に

4

1 に答える 1

2

UIScrollView の場合、コンテンツのサイズを設定する必要があります。その後、スクロールが開始されます

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

試してみる

于 2013-01-24T03:41:39.713 に答える