我刚刚第一次开始使用UICollectionView。似乎工作得很好,但有一个问题和一个问题。
我的UICollectionView设置如下,并带有自定义单元格:
- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section
{
return 10;
}
- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView
{
return 1;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ContactCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
cell.nameLbl.text = @"text";
return cell;
}
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
return CGSizeMake(145, 95);
}
- (UIEdgeInsets)collectionView:
(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
return UIEdgeInsetsMake(10, 10, 10, 10);
}
所以这都是花花公子,但我已将此行添加到viewDidLoad
:
[collectionView registerClass:[ContactCell class] forCellWithReuseIdentifier:@"Cell"];
这引起了麻烦,我不明白为什么。当我启用此行时,我的所有单元格都变为空白。怎么会?我错过了什么?
另外,据我所知,如果该行启用可重用单元格,为什么我必须使用集合视图而不必在表格视图中?
答案 0 :(得分:25)
您的故事板会自动注册您在故事板中设计的单元格,以获取您在界面构建器右侧窗格中为该单元格指定的重用标识符。通过为该重用标识符重新注册您的类,集合视图只需在子类上调用alloc init,并期望以编程方式设置视图。
如果您以前使用相同的重用注册了类或nib文件 标识符,您在cellClass参数中指定的类将替换 旧条目。如果需要,可以为cellClass指定nil 从指定的重用标识符中取消注册该类。
如果您想在故事板之外设计单元格,您可以通过编程方式设置界面,也可以在单独的xib中设置单元格,然后调用
- (void)registerNib:(UINib *)nib forCellWithReuseIdentifier:(NSString *)identifier
nib必须有一个顶级视图,该视图是自定义子类的单元格,并在接口构建器中设置了正确的重用标识符。
答案 1 :(得分:0)
删除
DELETE mt FROM mytable mt INNER JOIN temp_table tt ON mt.first_id = tt.first_id AND mt.second_id = tt.second_id AND mt.third_id = tt.third_id
对于故事板,我们不需要这一行