UICollectionView的基本使用(1)

如果是简单实用UICollectionView的话,用法和UITableView基本一致。下面是用UICollectionView实现的简单图片显示


(1)打开storyboard,将一个UICollectionView拖到View Controller Scene中,默认的UICollectionView已经包含了一个UICollectionViewcell,将一个UIImageView和UILabel拖到UICollectionViewcell中,如下图:



(2)连接输出口datasource和delegate:打开Connections Inspector(option+command+6),从输出口atasource和delegate分别拖曳到ViewController对像中。


(3)在ViewController中实现UICollectionViewDataSource,UICollectionViewDelegate代理

ViewController.h文件如下:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UICollectionViewDataSource,UICollectionViewDelegate>

@end

(4)新建AUICollectionViewCell类,继承UICollectionViewCell,完善.h文件,并连接输出口

AUICollectionViewCell.h如下:

#import <UIKit/UIKit.h>

@interface ACollectionViewCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *image;
@property (weak, nonatomic) IBOutlet UILabel *title;

@end

(5)完善ViewController.m文件,注释写的比较清楚了

#import "ViewController.h"
#import "ACollectionViewCell.h"
int const cellCount = 40;
@interface ViewController ()
@property(nonatomic,strong)NSArray *imgArr;
@end

@implementation ViewController

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

//图片懒加载
-(NSArray*)imgArr{
    if (!_imgArr) {
        NSMutableArray *muArr = [NSMutableArray array];
        for (int i = 0; i < cellCount; i++) {
            UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%d",i]];
            [muArr addObject:image];
        }
        _imgArr = muArr;
    }
    return _imgArr;
}

#pragma mark - UICollectionViewDataSource Delegate
#pragma mark cell的数量
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return cellCount;
}

#pragma mark cell的视图
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *cellIdentifier = @"CollectionViewCell";
    ACollectionViewCell *collectionViewCell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];
    collectionViewCell.layer.cornerRadius = 6.0f;
    
    collectionViewCell.image.image = [self.imgArr objectAtIndex:indexPath.row];
    collectionViewCell.title.text = [[NSString alloc] initWithFormat:@"图片%d",indexPath.row];
    return collectionViewCell;
}

#pragma mark cell的大小
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
    return CGSizeMake(150, 150);
}

#pragma mark cell的点击事件
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"点击图片%d",indexPath.row);
}

@end



本文Demo下载地址:http://download.youkuaiyun.com/detail/dolacmeng/8677213

使用UICollectionView实现Gallery图片浏览效果:http://blog.youkuaiyun.com/dolacmeng/article/details/45588293

使用UICollectionView实现瀑布流效果:http://blog.youkuaiyun.com/dolacmeng/article/details/45599069




<think>好的,我现在需要帮助用户了解如何使用UICollectionView,并且用户要求提供iOS Swift和Objective-C的示例。首先,我应该回顾一下UICollectionView基本概念和用途。UICollectionView是UIKit中用于展示集合视图的组件,类似于UITableView,但更灵活,支持网格布局、瀑布流等。用户可能已经对UITableView有所了解,所以可以适当对比两者的异同。 接下来,我需要考虑如何在Swift和Objective-C中分别实现UICollectionView。根据用户提供的引用内容,特别是引用[1]、[4]和[5],用户可能对混合编程有一定了解,但这里主要是单独使用两种语言来实现。需要确保示例代码正确,并符合各自的语法规范。 首先,构建Swift的示例。UICollectionView基本步骤包括设置数据源和代理,注册单元格,实现必要的协议方法(如numberOfItemsInSection、cellForItemAt)。可能需要创建一个自定义的UICollectionViewCell子类,并在Storyboard或代码中注册。同时,布局需要使用UICollectionViewFlowLayout或其子类来配置项的大小、间距等。引用[3]提到了Swift中初始化UITableView的例子,可以类比到UICollectionView的初始化。 然后是Objective-C的示例。步骤类似,但语法不同。需要导入头文件,实现数据源和代理方法,同样需要注册单元格或使用Storyboard中的标识符。引用[4]展示了Objective-C类的定义,可以作为参考。需要注意的是,在Objective-C中,协议方法的使用和Swift有所不同,比如使用@required关键字,但实际中数据源和代理方法通常是必须实现的。 另外,用户可能对性能优化感兴趣,比如单元格重用、布局计算等,但用户的问题主要是使用教程,所以可能不需要深入讨论性能,但可以简要提及。引用[5]提到Swift使用ARC和动态库优化性能,可能在对比中提及,但示例中可能不涉及这些细节。 需要检查是否有遗漏的步骤,例如是否需要实现sizeForItemAt方法,或者是否需要在布局中设置滚动方向。此外,是否需要处理用户交互,比如点击事件,但用户的问题可能只需要基础展示,所以可能暂时不需要。 还要考虑是否需要提供两种语言的完整代码示例,包括视图控制器的设置,例如在viewDidLoad中配置UICollectionView。在Swift中使用自动布局或框架设置frame,而Objective-C中可能使用initWithFrame或Auto Layout。 最后,生成相关问题,应该围绕UICollectionView的深入使用,比如自定义布局、性能优化、与UITableView的区别等,基于用户提供的示例中的引用内容,可能结合混合编程或性能方面的问题。</think>### UICollectionView 使用教程(iOS Swift/Objective-C 示例) UICollectionViewiOS 开发中用于展示集合数据的核心组件,支持灵活的布局和交互。以下是 Swift 和 Objective-C 的实现步骤: --- #### **1. Swift 实现示例** ##### 步骤 1:创建自定义单元格类 ```swift // CustomCollectionViewCell.swift import UIKit class CustomCollectionViewCell: UICollectionViewCell { static let identifier = "CustomCell" override init(frame: CGRect) { super.init(frame: frame) backgroundColor = .lightGray layer.cornerRadius = 8 } required init?(coder: NSCoder) { fatalError("init(coder:) has not been implemented") } } ``` ##### 步骤 2:实现 UICollectionView 数据源与代理 ```swift // ViewController.swift import UIKit class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout { var collectionView: UICollectionView! let items = ["Item 1", "Item 2", "Item 3"] override func viewDidLoad() { super.viewDidLoad() // 配置布局 let layout = UICollectionViewFlowLayout() layout.scrollDirection = .vertical layout.itemSize = CGSize(width: 100, height: 100) layout.minimumLineSpacing = 10 // 初始化 UICollectionView collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: layout) collectionView.register(CustomCollectionViewCell.self, forCellWithReuseIdentifier: CustomCollectionViewCell.identifier) collectionView.dataSource = self collectionView.delegate = self view.addSubview(collectionView) } // 数据源方法 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return items.count } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: CustomCollectionViewCell.identifier, for: indexPath) as! CustomCollectionViewCell return cell } } ``` --- #### **2. Objective-C 实现示例** ##### 步骤 1:创建自定义单元格类 ```objective-c // CustomCollectionViewCell.h #import <UIKit/UIKit.h> @interface CustomCollectionViewCell : UICollectionViewCell @property (nonatomic, strong) UILabel *titleLabel; @end // CustomCollectionViewCell.m #import "CustomCollectionViewCell.h" @implementation CustomCollectionViewCell - (instancetype)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.backgroundColor = [UIColor lightGrayColor]; self.layer.cornerRadius = 8; } return self; } @end ``` ##### 步骤 2:实现 UICollectionView 数据源与代理 ```objective-c // ViewController.m #import "ViewController.h" #import "CustomCollectionViewCell.h" @interface ViewController () <UICollectionViewDataSource, UICollectionViewDelegateFlowLayout> @property (nonatomic, strong) UICollectionView *collectionView; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // 配置布局 UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init]; layout.scrollDirection = UICollectionViewScrollDirectionVertical; layout.itemSize = CGSizeMake(100, 100); layout.minimumLineSpacing = 10; // 初始化 UICollectionView self.collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:layout]; [self.collectionView registerClass:[CustomCollectionViewCell class] forCellWithReuseIdentifier:@"CustomCell"]; self.collectionView.dataSource = self; self.collectionView.delegate = self; [self.view addSubview:self.collectionView]; } #pragma mark - UICollectionViewDataSource - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section { return 3; } - (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath { CustomCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"CustomCell" forIndexPath:indexPath]; return cell; } @end ``` --- #### **关键点说明** 1. **单元格重用机制**:通过 `register` 方法注册单元格类或 XIB 文件,提升性能[^5]。 2. **布局配置**:使用 `UICollectionViewFlowLayout` 控制单元格大小、间距和滚动方向。 3. **数据源与代理分离**:数据源(`UICollectionViewDataSource`)负责内容,代理(`UICollectionViewDelegate`)处理交互。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值