2012-12-05 86 views
1

對準我有一個UICollectionViewFlowLayout,基本上我想要做什麼,除了一兩件事 - UICollectionViewCells的正確對齊,當水平和分頁啓用滾動。iOS6的UICollecionViewFlowLayout - 臥式佈局 - 細胞

我基本上想是這樣的 - 在多個頁面滾動每頁:

見1瀏覽: UICollectionView Pictures

我的問題是,我有多個部分,始終與此相同的佈局,但是當我向右滾動,它得到空(只是背景色),而當我向後滾動到第一頁(像上面的),我得到一個怪異的結果:

見2.在上面的鏈接

顯然索引路徑得到某種混淆 - 我真的不知道爲什麼。

我的CollectionView:numberOfItemsInSection:方法總是返回 「5」,我numberOfSectionsInCollectionView:在這個例子中返回 「2」。我有子類UICollectionViewFlowLayout本:

static CGRect elementLayout[] = { 

    {20, 20, 649.333333, 294}, 
    {20, 334, 314.666666, 294}, 
    {688, 20.0, 314.666666, 294}, 
    {354.666666, 334, 314.666666, 294}, 
    {688, 334, 314.666666, 294}, 
}; 

-(NSArray*)layoutAttributesForElementsInRect:(CGRect)rect { 

    NSArray *attributes = [super layoutAttributesForElementsInRect:rect]; 
    NSMutableArray *newAttributes = [NSMutableArray array]; 

    for(int i = 0; i < [attributes count]; i++) 
    { 
     UICollectionViewLayoutAttributes* attrs = attributes[i]; 
     attrs.frame = elementLayout[i]; 
     [newAttributes addObject:attrs];  
    } 
    return newAttributes; 
} 

但是,如果我不繼承,並嘗試與標準的委託從UICollectionViewFlowLayout電話要它,然後我得到這樣的:

見3.在上面的鏈接

這正確向右滾動,但是用錯佈局。我所期待的,是與NSIndexPath細胞[0,1]將上「大」單元格的右側,而不是在它之下。但即使如此,我需要與NSIndexPath細胞[0,1]像圖片一個對齊。

我在這裏錯過了什麼嗎?

回答

0

了不少麻煩我終於想通了,爲什麼佈局奇怪的表現之後。

  • 當有多個部分時,您需要將每個項目矩形的x原點更改爲視圖寬度的倍數。

  • 更有趣的是:如果UICollectionViewFlowLayout生成的單元格比您預期的要少,那麼您可以覆蓋UICollectionViewLayoutAttributes的indexPath,以匹配預期的佈局。

所以工作配置將是:

for(int i = 0; i < (countOfCellsAnticipated); i++) 
{ 
    UICollectionViewLayoutAttributes* attrs = attributes[i]; 

    NSIndexPath* anticipatedIndexPath = [NSIndexPath indexPathForItem:i 
                  inSection:sectionIndex]; 

    attrs.indexPath = anticipatedIndexPath; 
    attrs.frame = recalculatedFrameInAbsoluteViewCoordinates; 
    [newAttributes addObject:attrs];  
} 

return newAttributes;