UICollectionView實現(xiàn)的標簽選擇器

近來,在項目中需要實現(xiàn)一個類似興趣標簽的選擇器溶推。由于標簽的文字長度不定否灾,所以標簽的顯示長度就不定。為了實現(xiàn)效果稍算,就使用了UICollectionView來實現(xiàn)了每行的標簽數(shù)量不定典尾、cell的寬度自適應的效果。先在此分享出來:

2017-09-07 update

現(xiàn)已支持多section效果和記錄上一次選中的標簽的效果糊探,并解決UICollectionView在滑動過程中有些cell一會顯示一會不顯示的bug钾埂。bug詳情見:UICollectionView滾動的時候會出現(xiàn)cell消失的情況,代碼已更新到GitHub科平,歡迎star褥紫。

1、自適應UICollectionViewCell

這里只是在自適應UICollectionViewCell上放一個和UICollectionViewCell保持一樣大小的按鈕瞪慧,當選中和取消選中時改變按鈕的文字顏色和邊框顏色:

#pragma mark---標簽cell
@implementation YLTagsCollectionViewCell
-(instancetype)initWithFrame:(CGRect)frame
{
    if(self = [super initWithFrame:frame]){
        self.backgroundColor = [UIColor clearColor];
        _btn = [UIButton buttonWithType:UIButtonTypeCustom];
        //此處可以根據(jù)需要自己使用自動布局代碼實現(xiàn)
        _btn.frame = CGRectMake(0, 0, frame.size.width, frame.size.height);
        _btn.backgroundColor = [UIColor whiteColor];
        _btn.titleLabel.font = [UIFont systemFontOfSize:14];
        _btn.layer.borderWidth = 1.f;
        _btn.layer.cornerRadius = frame.size.height/2.0;
        _btn.layer.masksToBounds = YES;
        [_btn setTitleColor:HEXCOLOR(0x666666) forState:UIControlStateNormal];
        _btn.layer.borderColor = HEXCOLOR(0xdddddd).CGColor;
        _btn.userInteractionEnabled = NO;
        [self.contentView addSubview:_btn];
    }
    return self;
}

-(void)layoutSubviews
{
    [super layoutSubviews];
    _btn.frame = CGRectMake(0, 0, self.contentView.frame.size.width, self.contentView.frame.size.height);
}

-(void)setSelected:(BOOL)selected
{
    [super setSelected:selected];
    _btn.layer.borderColor = selected?HEXCOLOR(0xffb400).CGColor:HEXCOLOR(0xdddddd).CGColor;
    [_btn setTitleColor:selected?HEXCOLOR(0xffb400):HEXCOLOR(0x666666) forState:UIControlStateNormal];
}

-(void)setHighlighted:(BOOL)highlighted
{
    [super setHighlighted:highlighted];
    _btn.layer.borderColor = highlighted?HEXCOLOR(0xffb400).CGColor:HEXCOLOR(0xdddddd).CGColor;
    [_btn setTitleColor:highlighted?HEXCOLOR(0xffb400):HEXCOLOR(0x666666) forState:UIControlStateNormal];
}

@end

2髓考、UICollectionViewFlowLayout子類--YLWaterFlowLayout的實現(xiàn)

.h頭文件

#import <UIKit/UIKit.h>

@class YLWaterFlowLayout;
@protocol  YLWaterFlowLayoutDelegate <NSObject>
/**通過代理獲得每個cell的寬度*/
- (CGFloat)waterFlowLayout:(YLWaterFlowLayout *)layout 
widthAtIndexPath:(NSIndexPath *)indexPath;

@end

@interface YLWaterFlowLayout : UICollectionViewFlowLayout
@property (nonatomic,assign) id<YLWaterFlowLayoutDelegate> delegate;
@property(nonatomic,assign)CGFloat rowHeight;///< 固定行高

@end

.m文件

#import "YLWaterFlowLayout.h"

@interface YLWaterFlowLayout()
@property(nonatomic,strong)NSMutableArray *originxArray;
@property(nonatomic,strong)NSMutableArray *originyArray;
@end

@implementation YLWaterFlowLayout
#pragma mark - 初始化屬性
- (instancetype)init {
    self = [super init];
    if (self) {
        [self setupLayout];
        _originxArray = [NSMutableArray array];
        _originyArray = [NSMutableArray array];
    }
    return self;
}

- (void)setupLayout
{
    self.minimumInteritemSpacing = 5;//同一行不同cell間距
    self.minimumLineSpacing = 5;//行間距
    self.headerReferenceSize = CGSizeMake(0, 50);//設置section header 固定高度,如果需要的話
    self.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);
    self.scrollDirection = UICollectionViewScrollDirectionVertical;
}

#pragma mark - 重寫父類的方法弃酌,實現(xiàn)瀑布流布局
#pragma mark - 當尺寸有所變化時氨菇,重新刷新
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {
    return NO;
}

- (void)prepareLayout {
    [super prepareLayout];
}

#pragma mark - 所有cell和view的布局屬性
//sectionheader sectionfooter decorationview collectionviewcell的屬性都會走這個方法
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
    NSArray *array = [super layoutAttributesForElementsInRect:rect];
    for(UICollectionViewLayoutAttributes *attrs in array){
        //類型判斷
        if(attrs.representedElementCategory == UICollectionElementCategoryCell){
            UICollectionViewLayoutAttributes *theAttrs = [self layoutAttributesForItemAtIndexPath:attrs.indexPath];
            attrs.frame = theAttrs.frame;
        }
    }
    return array;
}

#pragma mark - 指定cell的布局屬性
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
    CGFloat x = self.sectionInset.left;
    //如果有sectionheader需要加上sectionheader高度
    CGFloat y = self.headerReferenceSize.height + self.sectionInset.top;
    //判斷獲得前一個cell的x和y
    NSInteger preRow = indexPath.row - 1;
    if(preRow >= 0){
        if(_originyArray.count > preRow){
            x = [_originxArray[preRow]floatValue];
            y = [_originyArray[preRow]floatValue];
        }
        NSIndexPath *preIndexPath = [NSIndexPath indexPathForItem:preRow inSection:indexPath.section];
        CGFloat preWidth = [self.delegate waterFlowLayout:self widthAtIndexPath:preIndexPath];
        x += preWidth + self.minimumInteritemSpacing;
    }
    
    CGFloat currentWidth = [self.delegate waterFlowLayout:self widthAtIndexPath:indexPath];
    //保證一個cell不超過最大寬度
    currentWidth = MIN(currentWidth, self.collectionView.frame.size.width - self.sectionInset.left - self.sectionInset.right);
    if(x + currentWidth > self.collectionView.frame.size.width - self.sectionInset.right){
        //超出范圍儡炼,換行
        x = self.sectionInset.left;
        y += _rowHeight + self.minimumLineSpacing;
    }
    // 創(chuàng)建屬性
    UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
    attrs.frame = CGRectMake(x, y, currentWidth, _rowHeight);
    _originxArray[indexPath.row] = @(x);
    _originyArray[indexPath.row] = @(y);
    return attrs;
}

#pragma mark - CollectionView的滾動范圍
- (CGSize)collectionViewContentSize
{
    CGFloat width = self.collectionView.frame.size.width;
    __block CGFloat maxY = 0;
    [_originyArray enumerateObjectsUsingBlock:^(NSNumber *number, NSUInteger idx, BOOL * _Nonnull stop) {
        CGFloat y = [number floatValue];
        if (y > maxY) {
            maxY = y;
        }
    }];
    return CGSizeMake(width, maxY + _rowHeight + self.sectionInset.bottom);
}

@end

實現(xiàn)思路:在YLWaterFlowLayout中使用originxArray和originyArray兩個個數(shù)組記錄了每一個自定義YLTagsCollectionViewCell的位置x和y。

-(UICollectionViewLayoutAttributes *) layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath方法中通獲得與當前YLTagsCollectionViewCell臨近的“上一個YLTagsCollectionViewCell”的位置和尺寸信息门驾,將上一個cell的x加上上一個cell的width來得到當前cell的x射赛。同時還要判斷當前cell的x+width是否會超越出屏幕右邊緣多柑,如果超出奶是,則表明需要換行顯示了,這時候就要修改y的值了竣灌。

3聂沙、效果圖

YLTagsChooser.gif

大家可以參考這種思路來實現(xiàn)其他類似的標簽選擇視圖。
demo地址YLTagsChooser

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末初嘹,一起剝皮案震驚了整個濱河市及汉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌屯烦,老刑警劉巖坷随,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異驻龟,居然都是意外死亡温眉,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門翁狐,熙熙樓的掌柜王于貴愁眉苦臉地迎上來类溢,“玉大人,你說我怎么就攤上這事露懒〈忱洌” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵懈词,是天一觀的道長蛇耀。 經(jīng)常有香客問我,道長坎弯,這世上最難降的妖魔是什么纺涤? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮荞怒,結果婚禮上洒琢,老公的妹妹穿的比我還像新娘。我一直安慰自己褐桌,他們只是感情好衰抑,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著荧嵌,像睡著了一般呛踊。 火紅的嫁衣襯著肌膚如雪砾淌。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天谭网,我揣著相機與錄音汪厨,去河邊找鬼。 笑死愉择,一個胖子當著我的面吹牛劫乱,可吹牛的內容都是我干的。 我是一名探鬼主播锥涕,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼衷戈,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了层坠?” 一聲冷哼從身側響起殖妇,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎破花,沒想到半個月后谦趣,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡座每,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年前鹅,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片尺栖。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡嫡纠,死狀恐怖,靈堂內的尸體忽然破棺而出延赌,到底是詐尸還是另有隱情除盏,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布挫以,位于F島的核電站者蠕,受9級特大地震影響,放射性物質發(fā)生泄漏掐松。R本人自食惡果不足惜踱侣,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望大磺。 院中可真熱鬧抡句,春花似錦、人聲如沸杠愧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至锐锣,卻和暖如春腌闯,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背雕憔。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工姿骏, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人斤彼。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓分瘦,卻偏偏與公主長得像,于是被迫代替她去往敵國和親畅卓。 傳聞我的和親對象是個殘疾皇子擅腰,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內容