UICollectionView

简介: UICollectionView
 UINib *cellNib = [UINib nibWithNibName:@"LingDaoCell" bundle:nil];
    [self.m_collectionView registerNib:cellNib forCellWithReuseIdentifier:@"Cell"];
[self.collection registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cell"];
//图集delegate
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
    return 1;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return 3;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    NSString *cellIdentifier = @"Cell";
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];
    return cell;
}
相关文章
|
8月前
|
开发者 iOS开发
介绍 UITableView 和 UICollectionView,它们的区别是什么?
介绍 UITableView 和 UICollectionView,它们的区别是什么?
204 0
|
7月前
|
iOS开发 UED 容器
navigationController 的使用详解
navigationController 的使用详解
UITableViewCell和UICollectionViewCell自适应高度
UITableView和UICollectionView想通,此处就已UITableView为例
237 0
UITableViewCell和UICollectionViewCell自适应高度
UINavigationBar-使用总结
UINavigationBar-使用总结
127 0
UICollectionView的布局
UICollectionView的布局
403 0
UICollectionView的布局
UICollectionview的使用详解
三个代理<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout> 前两个的用法和tableView的很像,第三个是布局的协议。(注意:头视图尾视图都是由代理方法获得,而且需要写注册,缺少了也不行。) 注册以后,就不需要再去管理复用的问题了。这点就很简单。这个如果用好的话,会非常的简单。
|
iOS开发
iOS UITableViewCell嵌套CollectionView,tableview和collectionview同时滑动bug修复
iOS UITableViewCell嵌套CollectionView,tableview和collectionview同时滑动bug修复
1013 0