0

爲什麼當我創建一個CollectionView並使用不同的標識符對兩個單元格轉換時,後者是彼此相連的? 具有相同標識符的小區具有相同的距離,而不同標識符的小區粘在一起。 這裏我的代碼:單元格在UICollectionView中相互連接

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{ 
    return 2; 
} 

- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section; 
{ 
    if (section == 0) { 
     return 1; 
    } 
    if (section == 1) { 
     return 10; 
    } 
} 

- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath; 
{ 
    UICollectionViewCell *cell; 
    if (indexPath.section == 0) { 
     cell = [cv dequeueReusableCellWithReuseIdentifier:@"AddCell" forIndexPath:indexPath]; 
     UIImageView *cellImage = (UIImageView *)[cell viewWithTag:1]; 
     [cellImage setImage:[UIImage imageNamed:@"pulsante_trasparente.png"]]; 
    } 

    else if (indexPath.section == 1){ 
    cell = [cv dequeueReusableCellWithReuseIdentifier:@"PictureCell" forIndexPath:indexPath]; 
    UIImageView *cellImage = (UIImageView*)[cell viewWithTag:1]; 

    [cellImage setImage:[UIImage imageNamed:@"mi.png"]]; 
    } 
    return cell; 
} 

請幫幫我!

+0

目前尚不清楚你的意思。 PictureCells是相互粘在一起的,還是粘在AddCell上的? – rdelmar

+0

當標識符更改時,CollectionViewCell將自身附加到具有不同標識符的另一個單元格。也就是說,我有3個帶有AddCell標識符的單元格,以及6個帶有PictureCell標識符的單元格。當標識符發生變化並因此從AddCell更改爲PictureCell時,最後一個AddCell單元格將其自身附加到第一個PictureCell單元 – Joker

+0

這兩種單元格的大小是否不同? – rdelmar

回答

0

您是否嘗試將單元格的最小間距設置爲負值(如果不是這樣),請轉至xib中的UICollectionView並選擇檢查器並在其中自定義最小空間。我要給你一個形象展示我的意思:

CollectionView Inspector

+0

它不起作用 – Joker

1

實現此方法的不同部分的細胞之間獲得空間:

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section; 
{ 
    return UIEdgeInsetsMake(Top_Gap, Left_Gap, Buttom_Gap, Right_Gap); 
}