iOS实现列表与网格两种视图的相互切换_IOS

下图为京东商城的截图

很多人看到这个,第一眼想到的是用TableViewCollectionView来做切换,笔者刚开始也是认为这么做,后来发现还有一个非常的简单方法,就可以实现这个功能。

实现代码

1、首先创建一个CollectionView。

- (UICollectionView *)collectionView
{
  if (!_collectionView)
  {
    UICollectionViewFlowLayout *flowlayout = [[UICollectionViewFlowLayout alloc] init];
    //设置滚动方向
    [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]];
    //注册cell
    [_collectionView registerClass:[GridListCollectionViewCell class] forCellWithReuseIdentifier:kCellIdentifier_CollectionViewCell];
  }
  return _collectionView;
}

然后去京东商城抓取json数据,再去解析数据装入模型,objectWithDictionary:是将字典转化为模型,这个工具是我用 Runtime 写的,一行代码解析数据。

- (void)viewDidLoad
{
  [super viewDidLoad];
  // Do any additional setup after loading the view, typically from a nib.

  // 默认列表视图
  _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添加一个属性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

再添加一个切换视图的按钮,按钮的点击事件如下:

#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];
  }
}

最后还要设置一下切换时的CollectionViewItemSize

- (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);
  }
}

这样子就大体实现了列表视图和网格视图的相互切换,是不是很简单。

总结

以上就是这篇文章的全部内容了,可能由于笔者水平有限,文中如果有错误的地方,还望大家能够指出。或者有更好的方法和建议,我们也可以一起交流。希望这篇文章的内容对大家能有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索ios
, ios网格视图
, 视图切换
网格布局
ios网格视图、网格视图、网格絮凝池三视图、直通车网格视图、swift 网格视图,以便于您获取更多的相关知识。

时间: 2025-01-01 00:20:36

iOS实现列表与网格两种视图的相互切换_IOS的相关文章

IOS给图片添加水印(两种方式)_IOS

为了防止自己辛苦做的项目被别人盗走,采取图片添加水印,在此表示图片的独一无二.加水印不是在上面添加几个Label,而是我们把字画到图片上成为一个整体,下面小编给大家分享IOS给图片添加水印(两种方式). 提供一个方法,此方法只需要传递一个要加水印的图片和水印的内容就达到效果. 第一种方式: -(UIImage *)watermarkImage:(UIImage *)img withName:(NSString *)name { NSString* mark = name; int w = img

IOS collectionViewCell防止复用的两种方法_IOS

IOS collectionViewCell防止复用的两种方法 collectionView 防止cell复用的方法一: //在创建collectionView的时候注册cell(一个分区) UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath]; for (UIView *view in cell.contentV

win8系统两种安全模式怎样进行切换?

  win8系统与win7系统相比有很大的变化,比如说没有之前的一键就可以取得安静模式的成果,所以说想要实现这个功能就必须要到后台操作.不过这样操作起来确实是十分的麻烦,因此不少人都问有没有更好的方法呢?答案是肯定的.那么win8系统两种安全模式怎样进行切换呢?下面来看看具体的操作步骤吧. 1.一旦进入了宁静模式,那么只要不将前面的勾勾去掉,系统就会不断的进入到宁静模式. 2..打开电脑直接进入到操作系统,然后就点击Win+R组合键,在显示的输入框里面输进去msconfig等字符,接着就选择确定

erlang列表拼接的两种方式的速度对比

问题描述 今天无聊写了一个列表拼接两种方式的对比,主要是对比一下用"++"和"|"拼接列表的速度,书上说,"++"拼接列表是极为低效的**作.这里我用代码实现了一下,分别用两种方法生成N个零的列表:%%列表拼接对比 listsTimeCon(N)-> {TimeOne,_} = timer:tc(**,listsCon1,), {TimeTwo,_} = timer:tc(**,listsCon2,), case TimeOne >

iOS 10新漏洞曝光 两种方式都可绕过激活锁

苹果最近由于用户规模剧增,也导致了更多的人在破解苹果的软件或者寻找苹果软件的漏洞.最近,有专家发现了两种方式都可以绕过苹果的激活锁. 苹果设置激活锁这个功能当然是为了安全做考虑,当使用者试图关闭查找iPhone功能或恢复出厂化设置时要求其输入Apple ID密码,以确认使用者是否是机主本人.激活锁这个功能呢好处就在于如果你的iPhone丢了你可以锁定手机远程清除数据,就算别人偷去了刷机了也只能是块砖头. 但是目前有两个安全团队发现了iOS的激活锁可以绕过的方法.第一种是由一个叫做Hemanth

实现点击列表弹出列表索引的两种方式_javascript技巧

方式一,使用利用事件冒泡委托给列表的父节点去处理的方式: 复制代码 代码如下: var ulObj = document.getElementById("myUl"); ulObj.onclick = function (event) { var tg = event.target; var liArray = ulObj.getElementsByTagName("li"); for (var i = 0; i < liArray.length; i++)

Android通过LIstView显示文件列表的两种方法介绍_Android

在Android中通过ListView显示SD卡中的文件列表一共有两种方法,一是:通过继承ListActivity显示;二是:利用BaseAdapter显示.BaseAdapter是一个公共基类适配器,用于对ListView和Spinner等 一些控件提供显示数据.下面是利用BaseAdapter类来实现通过LIstView显示SD卡的步骤: 1.main.xml界面设计,如下图 复制代码 代码如下: <?xml version="1.0" encoding="utf-

Android通过LIstView显示文件列表的两种方法介绍

在Android中通过ListView显示SD卡中的文件列表一共有两种方法,一是:通过继承ListActivity显示;二是:利用BaseAdapter显示.BaseAdapter是一个公共基类适配器,用于对ListView和Spinner等 一些控件提供显示数据.下面是利用BaseAdapter类来实现通过LIstView显示SD卡的步骤: 1.main.xml界面设计,如下图 复制代码 代码如下: <?xml version="1.0" encoding="utf-

IOS开发:Unity3D 两种方式播放游戏视频

  Unity支持的播放视频格式有.mov..mpg..mpeg..mp4..avi和.asf.只需将对应的视频文件拖拽入Project视图即可,它会自动生成对应的MovieTexture对象.如下图所示,MOMO将default_video.mp4拖拽入Project视图中,如果视频中含有音频的话会对应生成audio文件,因为我的视频没有音频所以没有生成 audio文件.接着在Hierarchy视图中创建一个Plane对象视频将在它之上播放,Directional light世界定向光用于照亮