Sony Xperia で提供されているギャラリー アプリの機能を iPhone アプリで模倣したい。I ギャラリー アプリでは、画像は日付ごとにグループ化されたグリッドに表示され、セクションの最初の写真は他の写真の 2 倍のサイズになっています。ピンチアウト/ピンチインすると、すべての写真がズームアウト/インします。
Lithu TV の提案に従って PSTCollectionView を使用し、カスタム レイアウトを作成しました。そのレイアウトでは、 をオーバーライドし- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
ました。以下は同じコードです。
// called continuously as the rect changes
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect {
NSArray *attribs = [super layoutAttributesForElementsInRect:rect];
NSMutableArray *arrmFrames=nil;
for (int i=0;i<attribs.count;i++) {
UICollectionViewLayoutAttributes *attributesInitial=[attribs objectAtIndex:0];
UICollectionViewLayoutAttributes *attributes=[attribs objectAtIndex:i];
//Take initial frame from first cell
if(i==0)
fFirstCellsY = attributes.frame.origin.y;
//while Y is constant, save the adjusted frames for next cells
else if(attributes.frame.origin.y<fFirstCellsY+attributesInitial.frame.size.height)
{
if(arrmFrames==nil)
arrmFrames=[[NSMutableArray alloc]init];
attributes.frame=CGRectMake(attributes.frame.origin.x, attributesInitial.frame.origin.y, attributes.frame.size.width, attributes.frame.size.height);
[arrmFrames addObject:NSStringFromCGRect(CGRectMake(attributes.frame.origin.x, attributes.frame.origin.y+attributes.frame.size.height+10, attributes.frame.size.width, attributes.frame.size.height))];
}
//Adjust the frame of other cells
else
{
CGRect frame = attributes.frame;
attributes.frame=CGRectFromString((NSString*)[arrmFrames objectAtIndex:0]);
[arrmFrames removeObjectAtIndex:0];
[arrmFrames addObject:NSStringFromCGRect(frame)];
}
}
}
return attribs;
}
これは機能し、レイアウトは私が望んでいたように見えます。この方法により、デフォルトのレイアウトを使用した場合よりも多くのセルが表示され、私のレイアウトは問題なく表示されます。しかし、下にスクロールすると、目に見えるセルがリロードされます。その理由は、カスタム レイアウトにある前にデリゲート メソッド- (PSUICollectionViewCell *)collectionView:(PSUICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath
が呼び出されているためだと思います。- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
そのため、デフォルト レイアウトでは表示されないが、カスタム レイアウトでは表示されるセルは、後でリロードされます。
どうすればこれを克服できますか?