如何在iPhone / iPad中实现水平图库

时间:2011-05-30 10:22:45

标签: iphone ios ipad gallery uislider

嗨,伙计们,

我正在尝试在我的iPad应用中实现水平图库选项。我听说在Android中有一个叫做“gallery”的选项可以做这种实现。但是,有没有什么方法可以在iPad上实现这个功能..我附加了一个屏幕截图,使问题更加清晰......(画廊可以在屏幕截图的底部看到enter image description here

3 个答案:

答案 0 :(得分:3)

分配scrollView并在其中调用您的数据。希望下面的代码片段可以帮到你。该片段将创建一个水平滚动视图。

UIScrollView* scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 35, self.frame.size.width, self.frame.size.height-35)];
[self.scrollView setScrollEnabled:YES];
[self.scrollView setDelegate:self];
 self.scrollView.backgroundColor = [UIColor clearColor];
 [self.scrollView setShowsHorizontalScrollIndicator:NO];
 [self.scrollView setIndicatorStyle:UIScrollViewIndicatorStyleDefault];
 scrollView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
 scrollView.contentMode = UIViewContentModeScaleToFill;
 [self.scrollView setContentSize:CGSizeMake("GIVE YOUR WIDTH",0)];
[self.view addSubview:scrollView];

答案 1 :(得分:1)

答案 2 :(得分:0)

您可以使用UIPagecontroll类来实现此目的。

您还可以查看Xcode中的PageControl示例代码。