我有一个UIScrollView
我希望与UIPageControl
一起使用,以便让不同的页面水平滑动。我需要为每个页面添加UITextView
和一些UIImageView
。
在我的ViewController
中,我调用了一个Web服务,当数据到达时,我按如下方式添加项目:
for(int i=0;i<[arrData count];i++) {
NSString *body=@"Dummy text";
CGRect frame;
frame.origin.x = self.scrollView.frame.size.width * i;
frame.origin.y = 0;
frame.size.width = self.scrollView.frame.size.width;
frame.size.height = 40; //vedere landscape
UILabel *label = [[UILabel alloc] initWithFrame:frame];
[label setText:body];
label.numberOfLines=0;
[label sizeToFit];
label.autoresizingMask=UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.scrollView addSubview:label];
[label setBackgroundColor:[UIColor whiteColor]];
[self.scrollView addSubview:label];
int y_pos=label.frame.size.height+10;
int x_pos=0;
for(int img=0; img<[[[arrData objectAtIndex:i]objectForKey:@"images"] count]; img++) {
NSString *imageURL=[[[[arrData objectAtIndex:i] objectForKey:@"images"] objectAtIndex:img] objectForKey:@"fn"];
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:imageURL]];
UIImage *image = [UIImage imageWithData:imageData];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
[imageView setFrame:CGRectMake(self.scrollView.frame.size.width * i+img*100, y_pos, image.size.width, image.size.height)];
[self.scrollView addSubview:imageView];
}
}
self.scrollView.contentSize = CGSizeMake(self.scrollView.frame.size.width * [arrData count], self.scrollView.frame.size.height);
它在纵向上运行良好,但是当设备旋转时,显然布局已经毁了......这是使用ScrollView
和PageControl
的最佳方法吗?我是否必须处理旋转并更改插入项目之间的距离,或者(我认为)是否有更好的方法来构建所有内容?
答案 0 :(得分:1)
是的,您必须在每次方向更改时再次设置您的滚动视图框架,因为灵活宽度在横向模式下从两侧拉伸滚动视图的宽度,因此其内容会重叠并在您进行水平滚动时导致问题。你可以做的一件事是将scrollview的自动调整大小掩码设置为flexibleRightMargin | flexibleLeftMargin。它会将您的滚动视图的内容保留在中心,但滚动看起来不干净。