I have a question regarding the implementation of loadView:
Now it looks like this for me:
- (void)loadView { image = [UIImage imageNamed:@"plan.gif"]; scrollView=[[UIScrollView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]]; imageView = [[UIImageView alloc] initWithFrame: CGRectMake(0, 0,scrollView.frame.size.width + 40, scrollView.frame.size.height)]; imageView.image = image; [imageView setContentMode:UIViewContentModeCenter]; scrollView.contentSize = image.size; scrollView.maximumZoomScale = 3.0; scrollView.bounces = NO; scrollView.delegate = self;
I suggest that some of them should be in viewDidLoad :?
Thanks in advance.
source share