gpt4 book ai didi

ios - UIImageViews 嵌入在 UIScrollView 中的代码中,带有自动布局

转载 作者:行者123 更新时间:2023-12-01 16:50:32 26 4
gpt4 key购买 nike

我目前在使用 iOS 应用程序和自动布局时遇到问题。我想让用户在 UIScrollView 中滚动 Tumblr 中的照片(类似于照片应用程序,滚动您的图书馆时)。因此,当我的 ImageViewController 出现在屏幕上时,它有一系列帖子,但还没有图像数据。我的问题如下:

在我的 ScrollView 中,我想根据需要添加尽可能多的 UIImageViewS,并且我希望它们的大小都相同。我该怎么做?我尝试了很多(可能设计不好:-/)方法,比如 initwithframe:启用自动布局并在 NSMutableArray 中保留对它们的引用...

我现在的目标是将它们添加到我的 ScrollView 中 viewDidLoad并设置正确的约束。

感谢您的帮助,并为我糟糕的英语感到抱歉

编辑

好的,我解决了我的问题:我使用了一个不错的 ScrollView ,并在 viewWillAppear 中使用自动布局设置了它的约束。

这是给那些感兴趣的人的代码(对不起布局):
- (void)viewWillAppear:(BOOL)动画
{

[super viewWillAppear:animated];
[self downloadPhotos];
[self.scrollView setContentOffset:CGPointMake(self.selectedImageIndex * self.scrollView.frame.size.width, 0) animated:NO];

// Add UIImageViewS to self.scrollView with constraints and so on...
NSMutableDictionary *viewsDictionnary = [[NSMutableDictionary alloc] init];
NSMutableString *imageViewsString = [[NSMutableString alloc] init];
NSMutableArray *imageViews = [[NSMutableArray alloc] init];

for (int i = 0; i < self.fetchedResultsController.fetchedObjects.count; i++) {
UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.scrollView.bounds];
imageView.image = [UIImage imageNamed:@"placeholder_imageView"];
imageView.contentMode = UIViewContentModeScaleAspectFit;
imageView.translatesAutoresizingMaskIntoConstraints = NO;
[self.scrollView addSubview:imageView];

[imageViews addObject:imageView];
[viewsDictionnary setObject:imageView forKey:[NSString stringWithFormat:@"imageView%d", i]];
[imageViewsString appendString:[NSString stringWithFormat:@"[imageView%d]", i]];
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:imageView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self.scrollView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0.0]];
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:imageView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.scrollView attribute:NSLayoutAttributeWidth multiplier:1.0 constant:0.0]];
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:imageView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:self.scrollView attribute:NSLayoutAttributeHeight multiplier:1.0 constant:0.0]];
}
self.imageViews = imageViews;
NSString *horizontal = [NSString stringWithFormat:@"H:|%@|", imageViewsString];
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:horizontal options:0 metrics:0 views:viewsDictionnary]];
[self.scrollView setContentOffset:CGPointMake(self.selectedImageIndex * self.scrollView.frame.size.width, 0) animated:NO];

}

最佳答案

我建议不要使用scrollView,而是使用collectionView(iOS 6 及更高版本)。您可能会坚持认为您需要使用 iOS 5 或 iOS 4。让您自己轻松,collectionViews 使内存管理变得容易,如果您打算在 View 中加载大量照片,只需使用 collection view。然后,您可以创建一个具有 UIImageView 的 collectionViewCell。 UIImageView 将只有一种尺寸,然后您可以将其图像缩放属性设置为缩放以适应任何形状或大小,图像将适合 ImageView 并且不会失真。对 Collection View 进行一些研究,哎呀,可能有一个教程可以用来从互联网加载图像并使用 Collection View 显示它们。

关于ios - UIImageViews 嵌入在 UIScrollView 中的代码中,带有自动布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16387175/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com