ある時点でImageView
、のScrollView
サイズを変更しています。ScrollView
問題は、がImageView
と同じサイズにサイズ変更されているScrollView
ことですが、元の画像サイズを維持したいのです。
私がしていることはこれです:
scrollView.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height); // fullscreen scrollview
[scrollView setContentMode:UIViewContentModeTopLeft]; //i want the content to be on the top left, thats correct right?
[scrollView setContentSize:CGSizeMake(imageInScrollView.frame.size.width, imageInScrollView.frame.size.height)]; // now im setting the size of the content, which is like 200x200 but it shows in fullscreen
私のコードの横にあるコメントを読んでください、ありがとう!