iOS使用UICollectionView实现横向滚动照片效果
本文实例为大家分享了iOS使用UICollectionView实现横向滚动展示照片的具体代码,供大家参考,具体内容如下
这是Demo链接
效果图
思路
1. 界面搭建
界面的搭建十分简单,采用UICollectionView和自定义cell进行搭建即可。
// ViewController.m
// 下面使用到的宏和全局变量
#define ScreenW [UIScreen mainScreen].bounds.size.width
#define ScreenH [UIScreen mainScreen].bounds.size.height
static NSString *const cellID = @"cellID";
// 创建collectionView的代码
- (void)setupCollectionView
{
// 使用系统自带的流布局(继承自UICollectionViewLayout)
UICollectionViewFlowLayout *layout = ({
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
// 每个cell的大小
layout.itemSize = CGSizeMake(180, 180);
// 横向滚动
layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
// cell间的间距
layout.minimumLineSpacing = 40;
//第一个cell和最后一个cell居中显示(这里我的Demo里忘记改了我用的是160,最后微调数据cell的大小是180)
CGFloat margin = (ScreenW - 180) * 0.5;
layout.sectionInset = UIEdgeInsetsMake(0, margin, 0, margin);
layout;
});
// 使用UICollectionView必须设置UICollectionViewLayout属性
UICollectionView *collectionView = ({
UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
collectionView.center = self.view.center;
collectionView.bounds = CGRectMake(0, 0, ScreenW, 200);
collectionView.backgroundColor = [UIColor brownColor];
// 这里千万记得在interface哪里写<UICollectionViewDataSource>!!!
collectionView.dataSource = self;
[collectionView setShowsHorizontalScrollIndicator:NO];
[self.view addSubview:collectionView];
collectionView;
});
// 实现注册cell,其中PhotoCell是我自定义的cell,继承自UICollectionViewCell
UINib *collectionNib = [UINib nibWithNibName:NSStringFromClass([PhotoCell class])
bundle:nil];
[collectionView registerNib:collectionNib
forCellWithReuseIdentifier:cellID];
}
// UICollectionViewCellDataSource
- (NSInteger)collectionView:(UICollectionView *)collectionView
numberOfItemsInSection:(NSInteger)section
{
return 10;
}
- (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
PhotoCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID
forIndexPath:indexPath];
// 图片名是 0 ~ 9
cell.imageName = [NSString stringWithFormat:@"%ld", (long)indexPath.row];
return cell;
}
// 界面是一个xib文件,在cell里拖了个ImageView,约束上下左右都是10
// 图片名是数字 0 ~ 9
// PhotoCell.h
@property (nonatomic, strong) NSString *imageName;
// PhotoCell.m
@interface PhotoCell ()
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
@end
@implementation PhotoCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setImageName:(NSString *)imageName
{
_imageName = imageName;
self.imageView.image = [UIImage imageNamed:imageName];
}
到这里最基础的效果就实现完了,一组大小相等的图片cell。
2.大小变化已经居中效果实现
由于系统的UICollectionViewFlowLayout无法实现我想要的效果,因此我重写下该类中的某些方法。 在UICollectionViewLayout中有这样两句注释:
Methods in this class are meant to be overridden and will be called by its collection view to gather layout information. 在这个类中的方法意味着被重写(overridden),并且将要被它的 collection view 调用,用于收集布局信息
To get the truth on the current state of the collection view, call methods on UICollectionView rather than these. 要获取 collection view 的当前状态的真相,调用UICollectionView上的方法,而不是这些 其中有一点需要解释下,collectionView的bounds的x和y实际上就是collectionView的内容视图的 x和y。关于这点,请看我写的一篇博文的解释:iOS bounds学习笔记以及仿写UIScrollView的部分功能
// MyFlowLayout.h
#import <UIKit/UIKit.h>
// 注意!继承自UICollectionViewFlowLayout,因为它继承自UICollectionViewLayout。
@interface TWLayout : UICollectionViewFlowLayout
// MyFlowLayout.m
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
{
return YES;
}
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
{
// 获取collectionView的宽带
CGFloat collectionW = self.collectionView.bounds.size.width;
// 获取布局属性数组
NSArray<UICollectionViewLayoutAttributes *> *attrs = [super layoutAttributesForElementsInRect:self.collectionView.bounds];
for (int i = 0; i < attrs.count; i++) {
UICollectionViewLayoutAttributes *attr = attrs[i];
//每个显示的cell距离中心距离
CGFloat margin = fabs((attr.center.x - self.collectionView.contentOffset.x) - collectionW * 0.5);
// 缩放比例:(margin / (collectionW * 0.5))得出的结论相当于 0 ~ 1。而我们需要它的缩放比例是 1 ~ 0.65,这样就是 (1 - 0)~(1 - 0.35)
CGFloat scale = 1 - (margin / (collectionW * 0.5)) * 0.35;
attr.transform = CGAffineTransformMakeScale(scale, scale);
}
return attrs;
}
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity
{
// 获取collectionView的宽度
CGFloat collectionW = self.collectionView.bounds.size.width;
// 获取当前的内容偏移量
CGPoint targetP = proposedContentOffset;
// 获取显示cell的布局属性数组,横向滚动,所以只用考虑横向的x和width,纵向不用考虑
NSArray *attrs = [super layoutAttributesForElementsInRect:CGRectMake(targetP.x, 0, collectionW, MAXFLOAT)];
// 距离中心点最近的cell的间距(中间那个cell距离最近,值可正可负)
CGFloat minSpacing = MAXFLOAT;
for (UICollectionViewLayoutAttributes *attr in attrs) {
// 距离中心点的偏移量
CGFloat centerOffsetX = attr.center.x - targetP.x - collectionW * 0.5;
// fabs():CGFloat绝对值
if (fabs(centerOffsetX) < fabs(minSpacing)) {
minSpacing = centerOffsetX;
}
}
targetP.x += minSpacing;
return targetP;
}
最后,记得把 UICollectionViewFlowLayout 改成你自定义的FlowLayout对象!!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341