自动计算collectionView高度

主要技术点

  • 假设列数cols = 4,总数count = 7,那么需要添加空白格为 7 % 4 = 3 ,4-3 = 1个;
  • 初始化时collectionView的高度为300,获取数据后,根据数据内容来具体显示collectionView的高度,有个万能公式,( 行数 = (个数 - 1) ➗ 列数 + 1 ),然后collectionView的新高度 = 行数 * 每个collectionView的高度;

代码相关

#import "SHFiveViewController.h"

#import "SHSquareItem.h"

#import "SHSquareCell.h"

static NSString * const ID = @"cell";

static NSInteger const cols = 4;

static CGFloat const margin = 1;

#define itemWH (SHScreenW - (cols - 1) * margin) / cols

@interface SHFiveViewController ()

@property (nonatomic, strong) NSMutableArray *squareItems;

// 创建UICollectionView

@property (nonatomic,strong) UICollectionView *collectionView;

@end

@implementation SHFiveViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    //设置导航条

    [self setupNavBar];

    // 设置tableView底部视图

    [self setupFootView];

    

    // 展示方块内容 -> 请求数据(查看接口文档)

    [self loadData];

    

    self.tableView.sectionHeaderHeight = 0;

    self.tableView.sectionFooterHeight = SHMarin;

    self.tableView.contentInset = UIEdgeInsetsMake(SHMarin - 35, 0, 0, 0);

    

}

#pragma mark - UICollectionViewDataSource & UICollectionViewDelegate

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section

{

    return self.squareItems.count;

}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath

{

    // 从缓存池取

     SHSquareCell*cell = [collectionView dequeueReusableCellWithReuseIdentifier:ID forIndexPath:indexPath];

    

    cell.item = self.squareItems[indexPath.row];

    

    return cell;

}

#pragma mark - 请求数据

- (void)loadData

{

   /*

    // 1.创建请求会话管理者

    AFHTTPSessionManager *mgr = [AFHTTPSessionManager manager];

    

    // 2.拼接请求参数

    NSMutableDictionary *parameters = [NSMutableDictionary dictionary];

    parameters[@"a"] = @"square";

    parameters[@"c"] = @"topic";

    

    // 3.发送请求

    [mgr GET:SHCommonURL parameters:parameters progress:nil success:^(NSURLSessionDataTask * _Nonnull task, NSDictionary *  _Nullable responseObject) {

        

        NSArray *dictArr = responseObject[@"square_list"];

        

        // 字典数组转换成模型数组

        _squareItems = [SHSquareItem mj_objectArrayWithKeyValuesArray:dictArr];

        

        // 处理数据

        [self resloveData];

        

        // 设置collectionView 计算collectionView高度 = rows * itemWH

        // Rows = (count - 1) / cols + 1  3 cols4

        NSInteger count = _squareItems.count;

        NSInteger rows = (count - 1) / cols + 1;

        // 设置collectioView高度

        self.collectionView.sh_height = rows * itemWH;

        

        // 设置tableView滚动范围:自己计算

        self.tableView.tableFooterView = self.collectionView;

        // 刷新表格

        [self.collectionView reloadData];

        

    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {

        

    }];

    */

    

    [[SHAFNManger sharedManager]actionGetFiveCollectionDataSuccess:^(NSDictionary *data) {

        NSArray *dictArr = data[@"square_list"];

        self.squareItems = [SHSquareItem mj_objectArrayWithKeyValuesArray:dictArr];

        // 处理数据

        [self resloveData];

        

        // 设置collectionView 计算collectionView高度 = rows * itemWH

        //万能公式: 行数= (个数-1)除以列数 + 1;

        // Rows = (count - 1) / cols + 1  3 cols4

        NSInteger count = self.squareItems.count;

        NSInteger rows = (count - 1) / cols + 1;

        // 设置collectioView高度

        self.collectionView.sh_height = rows *itemWH;

        // 设置tableView滚动范围:自己计算

        self.tableView.tableFooterView = self.collectionView;

        [self.collectionView reloadData];

        

        

    } failure:^(NSError *error) {

        NSLog(@"%@",error);

    }];

    

}

#pragma mark - 处理请求完成数据

- (void)resloveData

{

    // 判断下缺几个

    // 3 % 4 = 3 cols - 3 = 1

    // 5 % 4 = 1 cols - 1 = 3

    // 补空位置

    NSInteger count = self.squareItems.count;

    NSInteger exter = count % cols;

    if (exter) {

        exter = cols - exter;

        for (int i = 0; i < exter; i++) {

            SHSquareItem *item = [[SHSquareItem alloc] init];

            [self.squareItems addObject:item];

        }

    }

    

    

}

#pragma mark - Private&Public Mthods

- (void)setupNavBar

{

    // 左边按钮

    // 把UIButton包装成UIBarButtonItem.就导致按钮点击区域扩大

    

    // 设置

    UIBarButtonItem *settingItem =  [UIBarButtonItem itemWithimage:[UIImage imageNamed:@"mine-setting-icon"] highImage:[UIImage imageNamed:@"mine-setting-icon-click"] target:self action:@selector(setting)];

    

    // 夜间模型

    UIBarButtonItem *nightItem =  [UIBarButtonItem itemWithimage:[UIImage imageNamed:@"mine-moon-icon"] selImage:[UIImage imageNamed:@"mine-moon-icon-click"] target:self action:@selector(night:)];

    

    self.navigationItem.rightBarButtonItems = @[settingItem,nightItem];

    

    // titleView

    self.navigationItem.title = @"我的";

    

}

- (void)setupFootView

{

    self.tableView.tableFooterView = self.collectionView;

}

#pragma mark - 监听点击事件

- (void)setting

{

    

}

- (void)night:(UIButton *)button

{

    button.selected = !button.selected;

}

#pragma mark - Getters

-(NSMutableArray *)squareItems

{

    if (!_squareItems) {

        _squareItems = [NSMutableArray array];

    }

    return _squareItems;

}

- (UICollectionView *)collectionView

{

    if (!_collectionView) {

        // 创建布局

        UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];

        // 设置cell尺寸

        layout.itemSize = CGSizeMake(itemWH, itemWH);

        layout.minimumInteritemSpacing = margin;

        layout.minimumLineSpacing = margin;

        _collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 0, 300) collectionViewLayout:layout];

        _collectionView.backgroundColor = self.tableView.backgroundColor;

        _collectionView.dataSource = self;

        _collectionView.delegate = self;

        _collectionView.scrollEnabled = NO;

        // 注册cell

        [_collectionView registerNib:[UINib nibWithNibName:@"SHSquareCell" bundle:nil] forCellWithReuseIdentifier:ID];

        

        

    }

    return _collectionView;

}

@end
@interface SHSquareItem : NSObject

@property (nonatomic, strong) NSString *name;

@property (nonatomic, strong) NSString *url;

@property (nonatomic, strong) NSString *icon;

@end

#import 

@class SHSquareItem;

@interface SHSquareCell : UICollectionViewCell

@property (nonatomic, strong) SHSquareItem *item;

@end


#import "SHSquareCell.h"

#import "SHSquareItem.h"

@interface SHSquareCell ()

@property (weak, nonatomic) IBOutlet UIImageView *iconImageV;

@property (weak, nonatomic) IBOutlet UILabel *titleL;

@end

@implementation SHSquareCell

- (void)awakeFromNib {

    [super awakeFromNib];

    // Initialization code

}

- (void)setItem:(SHSquareItem *)item

{

    _item = item;

    [self.iconImageV sd_setImageWithURL:[NSURL URLWithString:item.icon] placeholderImage:kImageName(@"")];

    

    self.titleL.text = item.name;

}

@end

效果图

自动计算collectionView高度_第1张图片
B267A5DDD4C0DA878F1FF36D507A6DE8.png
自动计算collectionView高度_第2张图片
5CE5737BF144A675678247E103331E5A.jpg

你可能感兴趣的:(自动计算collectionView高度)