UICollectionView の異なるセクションで異なる数のセルを表示する方法。その例を教えてください。
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
for(int i=0; i<[arrSeatSel count]; i++)
{
int c;
NSString *cnt = [NSString stringWithFormat:@"%@",[arrSeatSel objectAtIndex:i]];
c = [cnt intValue];
return c;
}
return 1;
}
前もって感謝します。