0

我为 ipad 创建带有滚动视图的缩略图照片,代码如下:

// load all the images from bundle and add them to the scroll view
NSUInteger i;
for (i = 1; i <= kNumImages; i++)
{
    NSString *imageName = [NSString stringWithFormat:@"image%d.jpg", i];
    UIImage *image = [UIImage imageNamed:imageName];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:image];


}



 - (void)layoutScrollImages
{
UIImageView *view = nil;
NSArray *subviews = [scrollView1 subviews];

// reposition all image subviews in a horizontal serial fashion
CGFloat curXLoc = 0;
for (view in subviews)
{
    if ([view isKindOfClass:[UIImageView class]] && view.tag > 0)
    {
        CGRect frame = view.frame;
        frame.origin = CGPointMake(curXLoc, 0);
        view.frame = frame;

        curXLoc += (kScrollObjWidth);
    }
}

}

现在我在 UIScrollView 中有所有图像,它们彼此相邻,我希望每个图像之间有一些空间,就像这张图片

在此处输入图像描述

你能给我一些提示,我怎样才能在这些图像之间添加空间?

提前致谢!

4

3 回答 3

0

改用 UICollectionView。更容易实现你想要的,也会更好地工作。

它甚至具有每个单元格之间空间的属性。

于 2012-10-08T16:33:20.140 回答
0

尝试这个:

curXLoc += (kScrollObjWidth) + kDifferenceBetweenImages;

并相应地定义 kDifferenceBetweenIMages。

于 2012-10-08T16:28:32.673 回答
0

试试这个:

CGRect frame = view.frame;
frame.origin = CGPointMake(curXLoc, 0);
frame.size.height = //put height;
frame.size.width = //put width;
frame.origin.y = //put y;
view.frame = frame;
curXLoc += (kScrollObjWidth) + 15;
于 2012-10-08T17:46:38.613 回答