gpt4 book ai didi

ios - UICollectionView : Show label "No item" in the section that don't have any item

转载 作者:可可西里 更新时间:2023-11-01 04:21:59 26 4
gpt4 key购买 nike

我有一个包含 5 个部分的 UICollectionView,一些部分有数据,一些部分(在我的代码中是第 2 部分)没有(它取决于服务器)
因此,我想在没有数据的选择中显示一个标签(“无项目”)。

但是,我可以找到任何想法来做到这一点,我希望任何人都可以给我一些建议或指导来实现它。
我真的很感激任何帮助

这是我的 intergrade 部分的代码

-(UICollectionReusableView *) collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{

FriendsFanLevelHeaderView *headerView = (FriendsFanLevelHeaderView *)[self.collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"FanLevelHeader" forIndexPath:indexPath];

switch (indexPath.section) {
case 0:
[headerView.lblFanLevelTitle setText:@"Gold"];
break;
case 1:
[headerView.lblFanLevelTitle setText:@"Silver"];
break;
case 2:
[headerView.lblFanLevelTitle setText:@"Bronze"];
break;
case 3:
[headerView.lblFanLevelTitle setText:@"Green"];
break;
case 4:
[headerView.lblFanLevelTitle setText:@"Other"];
break;
default:
break;
}

return headerView;
}


- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
switch (section) {
case 0:
return 3;
case 1:
return 0; // it doesn't have any item
case 2:
return 2;
case 3:
return 3;
case 4:
return 5;
default:
return 0;
}
}

- (FriendsCollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
FriendsCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"FriendsCollectionViewCell" forIndexPath:indexPath];

[cell.lblFriendBand setText:@"Band: White Mash "];
[cell.lblFriendGenre setText:@"Freestyle house, House, Freestyle music,"];
[cell.lblFriendECScore setText:@"EC score: 79"];

return cell;
}

enter image description here

============================================

这就是我想要的

enter image description here

最佳答案

假设您在 NSArray 中有每个部分的数据(项目)。

所以你有 goldSectionItems 数组、silverSectionItems 数组、bronzeSectionItems 数组、greenSectionItems 数组和 otherSectionItems 数组。

你要做的是:

  1. 当您想要在该部分中显示某些项目时
  2. 当您想要显示“无项目”的部分中没有项目时

在情况 1 中,您想要使用包含您的项目的数组向 Collection View 指示您的部分中的项目数。

在情况 2 中,您想向 Collection View 指示您有 1 个项目,这将是“无项目”单元格。

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
switch (section) {
case 0:
return MAX(1, goldSectionItems.count);
case 1:
// return at least 1 when you have no items from the server.
// When you do not have any items in
// you NSArray then you return 1, otherwise you return
// the number of items in your array
return MAX(1, silverSectionItems.count);
case 2:
return MAX(1, bronzeSectionItems.count);
case 3:
return MAX(1, greenSectionItems.count);
case 4:
return MAX(1, otherSectionItems.count);
default:
return 0;
}
}

注意 MAX 将返回其两个操作数之间的最大值。例如,如果您的 silverSectionItems 数组为空,则 count 属性将返回 0,因此 MAX(1, 0) 将返回 1。如果您的 silverSectionItems 不为空,count 将返回 N(其中 N>1)所以 MAX(1, N) 将返回 N

然后在您的 -collectionView:cellForItemAtIndexPath: 中,您要检查您是哪种情况:

如果您属于情况 1,您需要一个显示正常内容的单元格。

如果您属于情况 2,您需要一个显示“无项目”的单元格。

- (FriendsCollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
FriendsCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"FriendsCollectionViewCell" forIndexPath:indexPath];
// get the array that contains the items for your indexPath
NSArray *items = [self itemArrayForIndexPath:indexPath];

// case 2
// if the section does not have any items then set up the
// cell to display "No item"
if (items.count == 0) {
[cell.lblFriendBand setText:@"No item"];
[cell.lblFriendGenre setText:@""];
[cell.lblFriendECScore setText:@""];
}
// case 1
// setup the cell with your items
else {
// get you item here and set up the cell with your content
// Item *item = items[indexPath.item];
[cell.lblFriendBand setText:@"Band: White Mash "];
[cell.lblFriendGenre setText:@"Freestyle house, House, Freestyle music,"];
[cell.lblFriendECScore setText:@"EC score: 79"];
}

return cell;
}

// return array for the corresponding indexPath
- (NSArray *)itemArrayForIndexPath:(NSIndexPath *)indexPath {
switch (indexPath.section) {
case 0:
return goldSectionItems;
case 1:
return silverSectionItems;
case 2:
return bronzeSectionItems;
case 3:
return greenSectionItems;
case 4:
return otherSectionItems;
default:
return nil;
}
}

-(UICollectionReusableView *) collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{

FriendsFanLevelHeaderView *headerView = (FriendsFanLevelHeaderView *)[self.collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"FanLevelHeader" forIndexPath:indexPath];

switch (indexPath.section) {
case 0:
[headerView.lblFanLevelTitle setText:@"Gold"];
break;
case 1:
[headerView.lblFanLevelTitle setText:@"Silver"];
break;
case 2:
[headerView.lblFanLevelTitle setText:@"Bronze"];
break;
case 3:
[headerView.lblFanLevelTitle setText:@"Green"];
break;
case 4:
[headerView.lblFanLevelTitle setText:@"Other"];
break;
default:
break;
}

return headerView;
}

有不懂的就问。

关于ios - UICollectionView : Show label "No item" in the section that don't have any item,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34526276/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com