iOS ~ UICollectionView 横向分页滑动,cell左右横向排列

cell 排序

横向滑动的时候,竖着排列。
竖向滑动的时候,横着排列

Object-C:
1、横向分页滚动的UICollectionView,cell左右排版的简单实现
2、横向分页滚动的UICollectionView,cell左右排版
3、关于UICollectionView横向分页滚动,cell左右排版功能的实现

swift:
iOS UICollectionView 横向分页布局

笨办法 swift:思路更简单 UICollectionView 横屏分页,cell 左右排列 ios

小圆点:控件 UIPageControl
下面这种需求应该是会经常遇到的:

需求:固定高度一个区域,里面左右分页显示很多个图标,在每一页中的图标先从左往右排,排满后再从上往下排。这一页排满后排下一页。
图中这样的:上面cell的顺序我已经标出来了。

image

像这样的需求,第一反应是用UICollectionView来写,用UICollectionViewFlowLayout,然后设置为横向的。但是,采用这种方式来写,出来的效果就会是这样的:

image

那么还可以怎么实现?可以用大的cell包5个小图标在里面。这样实现按说没问题,但是如果单个图标这里复杂一点,就需要调很久了,而且如果要根据屏幕尺寸来定每行显示的图标个数也很麻烦。

子类化 UICollectionViewFlowLayout

1、KHomeNewRecommendFunctionFlowLayout.h

@interface KHomeNewRecommendFunctionFlowLayout : UICollectionViewFlowLayout

// 一行中 cell的个数
@property (nonatomic) NSUInteger itemCountPerRow;
// 一页显示多少行
@property (nonatomic) NSUInteger rowCount;

@end

2、KHomeNewRecommendFunctionFlowLayout.m

#import "KHomeNewRecommendFunctionFlowLayout.h"

@interface KHomeNewRecommendFunctionFlowLayout ()

@property (strong, nonatomic) NSMutableArray *allAttributes;

@end

@implementation KHomeNewRecommendFunctionFlowLayout

/**
    这里只简单的实现只支持1个section,而且section的items个数必须是 itemCountPerRow * rowCount 的整数倍。这里需要在UICollectionView的代理里面做好数组越界检查,防止数组越界造成崩溃。
 */


- (void)prepareLayout {
    [super prepareLayout];
    
    self.allAttributes = [NSMutableArray arrayWithCapacity:0];
    // iCount section==0 的cell个数
    NSInteger iCount = [self.collectionView numberOfItemsInSection:0];
    for (NSInteger i = 0; i < iCount; i++) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:0];
        UICollectionViewLayoutAttributes *attributes = [self layoutAttributesForItemAtIndexPath:indexPath];
        [self.allAttributes addObject:attributes];
    }
}

- (CGSize)collectionViewContentSize {
    return [super collectionViewContentSize];
}

- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath {
    NSUInteger item = indexPath.item; // 第几个item
    NSUInteger x; // 该item的 x坐标
    NSUInteger y; // 该item的 y坐标
    
    [self targetPositionWithItem:item resultX:&x resultY:&y];
    
    NSUInteger item2 = [self originItemAtX:x y:y];
    
    NSIndexPath *newIndexPath = [NSIndexPath indexPathForItem:item2 inSection:indexPath.section];
    UICollectionViewLayoutAttributes *newAttributes = [super layoutAttributesForItemAtIndexPath:newIndexPath];
    newAttributes.indexPath = indexPath;
    return newAttributes;
    
}

- (NSArray<__kindof UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
    
    NSArray *attributes = [super layoutAttributesForElementsInRect:rect];
    
    NSMutableArray *tmps = [NSMutableArray arrayWithCapacity:0];
    
    for (UICollectionViewLayoutAttributes *bute1 in attributes) {
        for (UICollectionViewLayoutAttributes *bute2 in self.allAttributes) {
            if (bute1.indexPath.item == bute2.indexPath.item) {
                [tmps addObject:bute2];
                break;
            }
        }
    }
    
    return tmps;
}

// 根据 item 计算目标item的位置 // (第几个item)
// x 横向偏移  y 竖向偏移
- (void)targetPositionWithItem:(NSUInteger)item
                       resultX:(NSUInteger *)x
                       resultY:(NSUInteger *)y {
    
    NSUInteger page = item/(self.itemCountPerRow * self.rowCount); // 第几页(左右翻页): 每行的cell个数 * 几行
    
    NSUInteger itemX = item % self.itemCountPerRow + page * self.itemCountPerRow; //
    NSUInteger itemY = item / self.itemCountPerRow - page * self.rowCount; //
     
    if (x != NULL) {
        *x = itemX;
    }
    if (y != NULL) {
        *y = itemY;
    }
}

// 根据偏移量计算item的origin
- (NSUInteger)originItemAtX:(NSUInteger)x
                          y:(NSUInteger)y {
    NSUInteger item = x * self.rowCount + y;
    return item;
}


@end

3、实现:在数组没有的可以添加几个空白的cell数据

self.arySort = [NSMutableArray arrayWithObjects:
    @{@"name" : @"学习", @"icon" : @"KHome_学习", @"tagIcon":@"KHome_学习图标", @"num":@"1"},
    @{@"name" : @"考试", @"icon" : @"KHome_考试", @"tagIcon":@"KHome_考试图标", @"num":@"2"},
    

                    @{@"name":@"",@"icon":@"",@"tagIcon":@"",@"num":@"14"},
                    @{@"name":@"",@"icon":@"",@"tagIcon":@"",@"num":@"15"},
                    @{@"name":@"",@"icon":@"",@"tagIcon":@"",@"num":@"16"},
                    @{@"name":@"",@"icon":@"",@"tagIcon":@"",@"num":@"17"},
                    @{@"name":@"",@"icon":@"",@"tagIcon":@"",@"num":@"18"},
                    @{@"name":@"",@"icon":@"",@"tagIcon":@"",@"num":@"19"},
                    nil];
    KHomeNewRecommendFunctionFlowLayout *layout = [[KHomeNewRecommendFunctionFlowLayout alloc] init];
    layout.itemCountPerRow = 5; // 每行几个item
    layout.rowCount = 2; // 一页显示几行
    layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    layout.sectionFootersPinToVisibleBounds = NO;
    layout.sectionHeadersPinToVisibleBounds = NO;
    
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
    collectionView.backgroundColor = [UIColor whiteColor];
    collectionView.delegate = self;
    collectionView.dataSource = self;
    collectionView.showsHorizontalScrollIndicator = NO;
    collectionView.pagingEnabled = YES;
    [self.contentView addSubview:collectionView];
    [collectionView makeConstraints:^(MASConstraintMaker *make) {
        make.top.mas_equalTo(self.mas_top);
        make.left.mas_equalTo(self.mas_left).offset([UIScreen mainScreen].bounds.size.width/375*12.5);
        make.right.mas_equalTo(self.mas_right).offset(-[UIScreen mainScreen].bounds.size.width/375*12.5);
        make.bottom.mas_equalTo(self.mas_bottom);
    }];
    self.collectionView = collectionView;
    [self.collectionView registerClass:[KHomeNewRecommendFunctionCollectionCell class] forCellWithReuseIdentifier:NSStringFromClass([KHomeNewRecommendFunctionCollectionCell class])];
    
    //设置的边界 12.5*2 + 10*2 + 20*4 + 50*5 = 375

需要注意的

我这个简单的实现只支持1个section,而且section的items个数必须是 itemCountPerRow * rowCount 的整数倍。这里需要在UICollectionView的代理里面做好数组越界检查,防止数组越界造成崩溃。
完整的实现以后再说吧,现在这样已经满足需求了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345