我遵循了有关如何创建滚动视图页面控件的教程:http: //www.iosdevnotes.com/2011/03/uiscrollview-paging/
本教程非常好,我很好地实现了代码。这是我的问题:
我想在我的 PageViews 之间放置一个空格,但是当它更改页面时,它会显示下一页中视图之间的空格。当我更改页面时,滚动必须在空格后停止。
我在这里更改了教程代码:
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *colors = [NSArray arrayWithObjects:[UIColor redColor], [UIColor greenColor], [UIColor blueColor], nil];
#define space 20
for (int i = 0; i < colors.count; i++) {
CGRect frame;
frame.origin.x = (self.scrollView.frame.size.width + space) * i;
frame.origin.y = 0;
frame.size = self.scrollView.frame.
UIView *subview = [[UIView alloc] initWithFrame:frame];
subview.backgroundColor = [colors objectAtIndex:i];
[self.scrollView addSubview:subview];
[subview release];
}
self.scrollView.contentSize = CGSizeMake(self.scrollView.frame.size.width * colors.count+ space*(colors.count-1), self.scrollView.frame.size.height);
}