瀑布流的实现

简介: 瀑布流的实现

简介:瀑布流的实现前提是后台给返回图片的高度和宽度


效果图


image.png

1.先给大家讲讲怎么使用这个封装


  • 1.瀑布流主要是layout的布局
    你可以把类CWWaterViewLayout.h拖走,里面有几个属性

/**
   *  collectionView上下左右之间的间距
   */
  @property(nonatomic,assign) UIEdgeInsets sectionInset;
  /**
   *  每一列之间的间距
   */
  @property(nonatomic,assign) CGFloat columnMargin1;
  /**
   *  每一行之间的间距
   */
  @property(nonatomic,assign) CGFloat rowMargin1;
  /**
   *  告诉外界你想显示多少列
   */
  @property(nonatomic,assign) int columnsCount;

默认情况下全是10


  • 2.cell的布局自己设计了
  • 3.传比例(这个方法需要实现)


#pragma mark - <CWWaterViewLayoutDelegate>的代理方法
-(CGFloat)waterflowLayout:(CWWaterViewLayout *)waterViewLayout heightForWidth:(CGFloat)width atIndexPath:(NSIndexPath *)indexPath
{
   ShopModel *shopmodel = self.tempArray[indexPath.item];
   /**
    *  取出来宽高
    */
  NSString *shopH = [NSString stringWithFormat:@"%@",shopmodel.H];
  NSString *shopW = [NSString stringWithFormat:@"%@",shopmodel.W];
  /**
    *  转化为float类型
    */
  CGFloat shopHValue = [shopH floatValue];
  CGFloat shopWValue = [shopW floatValue];
  /**
   *  返回比例计算的高度
   */
  return shopHValue / shopWValue * width;
}

2.重要的是CWWaterViewLayout.m里面的布局计算才是瀑布流的核心代码


#pragma mark5.  尺寸的计算
-(UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
/**
 *  假设最短的那一列是第0列
 */
__block NSString *minYColun = @"0";
[self.maxYdict enumerateKeysAndObjectsUsingBlock:^(NSString *column,NSNumber *maxY, BOOL * _Nonnull stop) {
    if ([maxY floatValue] < [self.maxYdict[minYColun] floatValue] ) {
        minYColun = column;
    }
}];
/**
 *  计算宽度
 */
CGFloat width =  (self.collectionView.frame.size.width - self.sectionInset.left - self.sectionInset.right - (self.columnsCount - 1) * self.columnMargin1)/self.columnsCount;
/**
 *  高度
 */
CGFloat height = [self.delegate waterflowLayout:self heightForWidth:width atIndexPath:indexPath];
/**
 *  计算x和y
 */
CGFloat x = self.sectionInset.left + (width + self.columnMargin1) * [minYColun floatValue];
CGFloat y = [self.maxYdict[minYColun]floatValue] + self.rowMargin1;
/**
 *  更新这一列的最大Y值
 */
  self.maxYdict[minYColun] = @(y + height);
  UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
  attrs.frame = CGRectMake(x, y, width, height);
  return attrs;
}


后记:具体的您看代码,我都进行了注释


王冲的瀑布流  密码: 4seg


目录
相关文章
|
6月前
|
JavaScript
uniapp实现瀑布流
uniapp实现瀑布流
|
17天前
好看的时间轴轮播特效代码
好看的时间轴轮播特效代码,源码由HTML+CSS+JS组成,记事本打开源码文件可以进行内容文字之类的修改,双击html文件可以本地运行效果,也可以上传到服务器里面
7 0
|
1月前
简单瀑布流
简单瀑布流
23 0
|
1月前
|
前端开发 JavaScript
实现瀑布流的几种方式(效果图)
实现瀑布流的几种方式(效果图)
38 0
|
3月前
瀑布流布局
瀑布流布局
35 0
图文混排
3.7 图文混排 3.7.1 插入图片和剪贴画 1、插入图片 1嵌入式对象: 只能放置到有文档插入点的位置。 不能与其他对象同时选择,不能与其他对象组合。 可以与正文一起排版,但不能实现环绕。 2浮动式对象: 可以放置到页面的任意位置。 可以同时选择多个对象,并允许与其他对象组合。 还可以与正文实现多种形式的环绕。 嵌入式对象 浮动式对象 位置 插入点位置 任意位置 同时选择、组合 不能 能 与正文排版 能 能 环绕 不能 能 默认 图片、剪贴画 形状、艺术字、文本框 非嵌入式(浮动式)对象的环绕方式: 四周型 上下型 紧密型 浮于文字上方 穿越型 衬于文字下方 三种插入
|
6月前
uniapp实现瀑布流?
uniapp实现瀑布流?
|
JavaScript
jquery插件-瀑布流-52
jquery插件-瀑布流-52
97 0
jquery插件-瀑布流-52
|
容器
利用CustomScrollView实现更有趣的滑动效果
本篇介绍了 CustomScrollView 的基本用法以及 SliverAppBar 的使用,通过 SliverAppBar 可以让导航栏的滑动更有趣。
816 0
利用CustomScrollView实现更有趣的滑动效果