iOS列表和網(wǎng)格視圖的相互切換

前言


在很多電商 app 中虽界,都有列表視圖和網(wǎng)格視圖的相互切換扛施。例如京東和淘寶鸿捧。

先來看下效果圖,下圖為京東商城的截圖疙渣。


列表效果

網(wǎng)格效果

很多人看到這個(gè)匙奴,第一眼想到的是用 TableView 和 CollectionView 來做切換,筆者剛開始也是認(rèn)為這么做妄荔,后來發(fā)現(xiàn)還有一個(gè)非常的簡(jiǎn)單方法泼菌,就可以實(shí)現(xiàn)這個(gè)功能。

正文


  • 首先創(chuàng)建一個(gè) CollectionView 啦租。
- (UICollectionView *)collectionView
{
    if (!_collectionView)
    {
        UICollectionViewFlowLayout *flowlayout = [[UICollectionViewFlowLayout alloc] init];
        //設(shè)置滾動(dòng)方向
        [flowlayout setScrollDirection:UICollectionViewScrollDirectionVertical];
        //左右間距
        flowlayout.minimumInteritemSpacing = 2;
        //上下間距
        flowlayout.minimumLineSpacing = 2;
        _collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(2 , 2 , self.view.bounds.size.width - 4, self.view.bounds.size.height - 4) collectionViewLayout:flowlayout];
        _collectionView.delegate = self;
        _collectionView.dataSource = self;
        _collectionView.showsVerticalScrollIndicator = NO;
        _collectionView.showsHorizontalScrollIndicator = NO;
        [_collectionView setBackgroundColor:[UIColor clearColor]];
        //注冊(cè)cell
        [_collectionView registerClass:[GridListCollectionViewCell class] forCellWithReuseIdentifier:kCellIdentifier_CollectionViewCell];
    }
    return _collectionView;
}
  • 然后去抓取 json 數(shù)據(jù),再去解析數(shù)據(jù)裝入模型篷角。
- (void)viewDidLoad 
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    // 默認(rèn)列表視圖
    _isGrid = NO;

    NSString *path = [[NSBundle mainBundle] pathForResource:@"product" ofType:@"json"];
    NSData *data = [NSData dataWithContentsOfFile:path];
    NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];

    [self.view addSubview:self.collectionView];

    NSArray *products = dict[@"wareInfo"];
    for (id obj in products) {
        [self.dataSource addObject:[GridListModel objectWithDictionary:obj]];
    }
}
  • 再去自定義 CollectionViewCell 焊刹,給 cell 添加一個(gè)屬性 isGrid ,用來判斷是列表還是格子視圖。

.h文件:

#import <UIKit/UIKit.h>

#define kCellIdentifier_CollectionViewCell @"GridListCollectionViewCell"

@class GridListModel;

@interface GridListCollectionViewCell : UICollectionViewCell

/**
 0:列表視圖虐块,1:格子視圖
 */
@property (nonatomic, assign) BOOL isGrid;

@property (nonatomic, strong) GridListModel *model;

@end

.m文件:

#import "GridListCollectionViewCell.h"
#import "GridListModel.h"
#import "UIImageView+WebCache.h"

#define ScreenWidth ([UIScreen mainScreen].bounds.size.width)

@interface GridListCollectionViewCell ()

@property (nonatomic, strong) UIImageView *imageV;
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UILabel *priceLabel;

@end

@implementation GridListCollectionViewCell

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self configureUI];
    }
    return self;
}

- (void)configureUI
{
    _imageV = [[UIImageView alloc] initWithFrame:CGRectZero];
    [self.contentView addSubview:_imageV];

    _titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
    _titleLabel.numberOfLines = 0;
    _titleLabel.font = [UIFont boldSystemFontOfSize:14];
    [self.contentView addSubview:_titleLabel];

    _priceLabel = [[UILabel alloc] initWithFrame:CGRectZero];
    _priceLabel.textColor = [UIColor redColor];
    _priceLabel.font = [UIFont systemFontOfSize:16];
    [self.contentView addSubview:_priceLabel];
}

- (void)setIsGrid:(BOOL)isGrid
{
    _isGrid = isGrid;

    if (isGrid) {
        _imageV.frame = CGRectMake(5, 5, self.bounds.size.width - 60, self.bounds.size.width - 60);
        _titleLabel.frame = CGRectMake(5, self.bounds.size.width - 45, ScreenWidth/2, 20);
        _priceLabel.frame = CGRectMake(5, self.bounds.size.width - 20, ScreenWidth/2, 20);
    } else {
        _imageV.frame = CGRectMake(5, 5, self.bounds.size.height - 10, self.bounds.size.height - 10);
        _titleLabel.frame = CGRectMake(self.bounds.size.height + 10, 0, ScreenWidth/2, self.bounds.size.height - 20);;
        _priceLabel.frame = CGRectMake(self.bounds.size.height + 10, self.bounds.size.height - 30, ScreenWidth/2, 20);;
    }
}

- (void)setModel:(GridListModel *)model
{
    _model = model;

    [_imageV sd_setImageWithURL:[NSURL URLWithString:model.imageurl]];
    _titleLabel.text = model.wname;
    _priceLabel.text = [NSString stringWithFormat:@"¥%.2f",model.jdPrice];
}

@end
  • 再添加一個(gè)切換視圖的按鈕俩滥,按鈕的點(diǎn)擊事件如下:
#pragma mark - Action

- (IBAction)onBtnClick:(id)sender
{
    _isGrid = !_isGrid;
    [self.collectionView reloadData];

    if (_isGrid) {
        [self.swithBtn setImage:[UIImage imageNamed:@"product_list_grid_btn"] forState:0];
    } else {
        [self.swithBtn setImage:[UIImage imageNamed:@"product_list_list_btn"] forState:0];
    }
}
  • 最后還要設(shè)置一下切換時(shí)的 CollectionView 的 ItemSize 。
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    if (_isGrid) {
        return CGSizeMake((ScreenWidth - 6) / 2, (ScreenWidth - 6) / 2 + 40);
    } else {
        return CGSizeMake(ScreenWidth - 4, (ScreenWidth - 6) / 4 + 20);
    }
}

這樣子就大體實(shí)現(xiàn)了列表視圖和網(wǎng)格視圖的相互切換贺奠,是不是炒雞簡(jiǎn)單霜旧。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市儡率,隨后出現(xiàn)的幾起案子挂据,更是在濱河造成了極大的恐慌,老刑警劉巖喉悴,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件棱貌,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡箕肃,警方通過查閱死者的電腦和手機(jī)婚脱,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來勺像,“玉大人障贸,你說我怎么就攤上這事∫骰拢” “怎么了篮洁?”我有些...
    開封第一講書人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)殃姓。 經(jīng)常有香客問我袁波,道長(zhǎng),這世上最難降的妖魔是什么蜗侈? 我笑而不...
    開封第一講書人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任篷牌,我火速辦了婚禮,結(jié)果婚禮上踏幻,老公的妹妹穿的比我還像新娘枷颊。我一直安慰自己,他們只是感情好该面,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開白布夭苗。 她就那樣靜靜地躺著,像睡著了一般隔缀。 火紅的嫁衣襯著肌膚如雪题造。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,096評(píng)論 1 291
  • 那天猾瘸,我揣著相機(jī)與錄音晌梨,去河邊找鬼桥嗤。 笑死,一個(gè)胖子當(dāng)著我的面吹牛仔蝌,可吹牛的內(nèi)容都是我干的泛领。 我是一名探鬼主播,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼敛惊,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼渊鞋!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起瞧挤,我...
    開封第一講書人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤锡宋,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后特恬,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體执俩,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年癌刽,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了役首。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡显拜,死狀恐怖衡奥,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情远荠,我是刑警寧澤矮固,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布,位于F島的核電站譬淳,受9級(jí)特大地震影響档址,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜邻梆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一守伸、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧确虱,春花似錦含友、人聲如沸替裆。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽辆童。三九已至宜咒,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間把鉴,已是汗流浹背故黑。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來泰國(guó)打工儿咱, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人场晶。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓混埠,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親诗轻。 傳聞我的和親對(duì)象是個(gè)殘疾皇子钳宪,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容