服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS使用UICollectionView实现横向滚动照片效果

iOS使用UICollectionView实现横向滚动照片效果

2021-05-25 15:41抬头看见柠檬树 IOS

这篇文章主要为大家详细介绍了iOS使用UICollectionView实现横向滚动照片效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了ios使用uicollectionview实现横向滚动展示照片的具体代码,供大家参考,具体内容如下

这是demo链接

效果图

iOS使用UICollectionView实现横向滚动照片效果

思路

1. 界面搭建

界面的搭建十分简单,采用uicollectionview和自定义cell进行搭建即可。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// 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;
}
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 界面是一个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中有这样两句注释:

1. methods in this class are meant to be overridden and will be called by its collection view to gather layout information.
在这个类中的方法意味着被重写(overridden),并且将要被它的 collection view 调用,用于收集布局信息

2. 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的部分功能

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// myflowlayout.h
#import <uikit/uikit.h>
 
// 注意!继承自uicollectionviewflowlayout,因为它继承自uicollectionviewlayout。
@interface twlayout : uicollectionviewflowlayout
 
// myflowlayout.m
/**
 * the default implementation of this method returns no. subclasses can override it and return an appropriate value based on whether changes in the bounds of the collection view require changes to the layout of cells and supplementary views.
  此方法的默认实现返回no。 子类可以覆盖它,并根据 collection view 的 bounds 中的更改是否需要更改 cells 和 supplementary views(补充视图) 的布局返回适当的值。
 
 * if the bounds of the collection view change and this method returns yes, the collection view invalidates the layout by calling the invalidatelayoutwithcontext: method.
  如果 collection view 的 bounds 更改并且此方法返回yes,则 collection view 通过调用invalidatelayoutwithcontext:方法使布局更新。
 
 @param newbounds the new bounds of the collection view.
 @return yes if the collection view requires a layout update or no if the layout does not need to change.
 */
- (bool)shouldinvalidatelayoutforboundschange:(cgrect)newbounds
{
 return yes;
}
 
 
/**
 * returns the layout attributes for all of the cells and views in the specified rectangle.
 返回指定矩形中所有cells和views的布局属性。
 
 @param rect * the rectangle (specified in the collection view's coordinate system) containing the target views.
    包含目标视图的矩形(在集合视图的坐标系中指定)。
 
 @return * an array of uicollectionviewlayoutattributes objects representing the layout information for the cells and views. the default implementation returns nil.
   uicollectionviewlayoutattributes对象数组,表示cell和view的布局信息。默认实现返回nil。
 */
- (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;
}
 
 
/**
 * returns the point at which to stop scrolling.
 * 关于这个方法,最终的偏移量,并不是由手指滑动过的偏移量决定的。如果手指滑动比较快,手指滑动过后,视图还会多滚动一段距离;如果手指滑动缓慢,手指滑到何处,就停到何处。
 
 @param proposedcontentoffset 建议的点(在集合视图的内容视图的坐标空间中)用于可见内容的左上角。 这表示集合视图计算为在动画结束时最可能使用的值。
 @param velocity 沿着水平轴和垂直轴的当前滚动速度。 该值以每秒点数为单位。
 @return 要使用的内容偏移量。 此方法的默认实现返回proposedcontentoffset参数中的值。
 */
- (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对象!!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/MyKingSaber/article/details/56488629

延伸 · 阅读

精彩推荐
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03