UIScrollView not scrolling…

2019-01-29 13:12发布

问题:

I create i uiscrollview, when i run my app, touch the scrollview but the scrollview does not scroll. help me! think you! The code as:

for (int i=0; i<imageCounts; i++) 
{
   GalleryProperty *itemVo = [itemList objectAtIndex:i];

   //1 button
   UIImageView *imageview = [[UIImageView alloc] initWithFrame:CGRectMake(0,20,320,460)];

   UIImage *image = [UIImage imageWithContentsOfFile:itemVo.pic];
   [imageview setImage:image];

   [scrollView addSubview:imageview ];

   [imageView release];
}

回答1:

You have to set the content size:

scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * 3, scrollView.frame.size.height);


回答2:

When initializing set scrollView frame size equal to your View Size. 
and setContent offset size according to the no of images you're showing in the scrollView.

In your case

 UIScrollView *yourScrollView=[[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, 320, 460)];//init scroll view

    for (int i=0; i<imageCounts; i++) 
    {
       GalleryProperty *itemVo = [itemList objectAtIndex:i];

       //1 button
       UIImageView *imageview = [[UIImageView alloc] initWithFrame:CGRectMake(0,20,320,460)];

       UIImage *image = [UIImage imageWithContentsOfFile:itemVo.pic];
       [imageview setImage:image];

       [scrollView addSubview:imageview ];

       yourScrollView.contentSize=CGSizeMake(320*i, 460);//set content size here

       [imageView release];
    }