2013-07-17 35 views
0

當我實現沒有自定義佈局對象的UICollectionView時,所有16個可重用單元出現。也就是說,我有1個部分,其中有16個項目。當我創建自定義佈局對象時,只出現1個單元格。如果我將#個部分更改爲5,則出現5個單元格。爲什麼collectionView在使用佈局對象時繪製部分,以及使用默認網格時的項目?我錯過了什麼嗎?UICollectionViewLayout。我的物品在哪裏?

我繼承UICollectionViewLayout這裏:

static NSString * const kPadLayoutType = @"gridPads"; 

- (id)initWithCoder:(NSCoder *)aDecoder 
{ 
    self = [super initWithCoder:aDecoder]; 
    if(self) { 
     [self setup]; 
    } 
    return self; 
} 

- (void)setup 
{ 
    self.itemInsets = UIEdgeInsetsMake(22.0f, 22.0f, 13.0f, 22.0f); 
    self.itemSize = CGSizeMake(125.0f, 125.0f); 
    self.interItemSpacingY = 12.0f; 
    self.numberOfColumns = 4; 
} 

# pragma mark _____Layout 

- (void)prepareLayout 
{ 
    NSMutableDictionary *newLayoutInfo = [NSMutableDictionary dictionary]; 
    NSMutableDictionary *cellLayoutInfo = [NSMutableDictionary dictionary]; 

    NSInteger sectionCount = [self.collectionView numberOfSections]; 
    NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:0]; 

    for(NSInteger section = 0; section < sectionCount; section++) { 
     NSInteger itemCount = [self.collectionView numberOfItemsInSection:section]; 

     for(NSInteger item = 0; item < itemCount; item++) { 
      indexPath = [NSIndexPath indexPathForItem:item inSection:section]; 

      UICollectionViewLayoutAttributes *itemAttributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath]; 
      itemAttributes.frame = [self frameForPadAtIndexPath:indexPath]; 

      cellLayoutInfo[indexPath] = itemAttributes; 
     } 
    } 
    newLayoutInfo[kPadLayoutType] = cellLayoutInfo; 
    self.layoutInfo = newLayoutInfo; 
} 

- (CGSize)collectionViewContentSize 
{ 
    return self.collectionView.frame.size; 
} 

- (NSArray *) layoutAttributesForElementsInRect:(CGRect)rect 
{ 
    NSMutableArray *allAttributes = [NSMutableArray arrayWithCapacity:self.layoutInfo.count]; 

    [self.layoutInfo enumerateKeysAndObjectsUsingBlock:^(NSString *elementIdentifier, 
                NSDictionary *elementsInfo, 
                BOOL *stop) { 
     [elementsInfo enumerateKeysAndObjectsUsingBlock:^(NSIndexPath *indexPath, 
                 UICollectionViewLayoutAttributes *attributes, 
                 BOOL *innerStop) { 
      if(CGRectIntersectsRect(rect, attributes.frame)) { 
       [allAttributes addObject:attributes]; 
      } 
     }]; 
    }]; 
    return allAttributes; 
} 

- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath 
{ 
    return self.layoutInfo[kPadLayoutType][indexPath]; 
} 

# pragma mark _____Private 

- (CGRect)frameForPadAtIndexPath:(NSIndexPath *)indexPath 
{ 
    NSInteger row = indexPath.section/ self.numberOfColumns; 
    NSInteger column = indexPath.section % self.numberOfColumns; 

    CGFloat spacingX = self.collectionView.bounds.size.width - self.itemInsets.left - self.itemInsets.right - (self.numberOfColumns * self.itemSize.width); 

    if(self.numberOfColumns > 1) spacingX = spacingX/(self.numberOfColumns - 1); 

    CGFloat originX = floorf(self.itemInsets.left + (self.itemSize.width + spacingX) * column); 

    CGFloat originY = floor(self.itemInsets.top + (self.itemSize.height + self.interItemSpacingY) * row); 

    return CGRectMake(originX, originY, self.itemSize.width, self.itemSize.height); 
} 

我在每一個二傳手佈局失效。

我用我的UIViewController 內的CollectionView在的viewController註冊我使用Cell類的viewDidLoad中和設置如下:

# pragma mark - UICollectionViewDataSource 

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section 
{ 
    return 16; 
} 

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

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath 
{ 
    Pad *myPad = [collectionView dequeueReusableCellWithReuseIdentifier:kPadLayoutType forIndexPath:indexPath]; 
    return myPad; 
} 
+1

顯示一些代碼,可能有助於追查問題 – Jasper

回答

1

在我看來,你frameForPadAtIndexPath:方法將返回相同的幀每個項目在同一部分內,只會改變該部分的位置。

更改

NSInteger row = indexPath.section/ self.numberOfColumns; 
NSInteger column = indexPath.section % self.numberOfColumns; 

NSInteger row = indexPath.item/ self.numberOfColumns; 
NSInteger column = indexPath.item % self.numberOfColumns; 

可能會給你更好的結果。

+0

謝謝。 – DanMoore