UICollectionView 和 UICollectionViewController 类是iOS6 新引进的API,用于展现集合视图,布局更加灵活,可实现多列布局,用法相似于UITableView 和 UITableViewController 类。html
使用UICollectionView 必须实现UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout这三个协议。ios