滚动时看不到最后一行的uicollectionview

时间:2014-01-24 13:57:35

标签: scroll collectionview

我以编程方式创建了UiCollectionView。这是我的代码片段......

UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc] init];     collectionV = [[UICollectionView alloc] initWithFrame:CGRectMake(0,0,320,500)collectionViewLayout:layout];

[collectionV setDataSource:self];
[collectionV setDelegate:self];
[collectionV registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellIdentifier"];
[collectionV setBackgroundColor:[UIColor greenColor]];
collectionV.scrollEnabled = YES;

[self.view addSubView:CollectionV];

我的问题是我在滚动时看不到最后一行。有人帮我修理它。 提前谢谢。

0 个答案:

没有答案