开发者

UIScrollView not scrolling…

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=开发者_如何学Python0; 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];
}


You have to set the content size:

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


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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜