我以编程方式创建了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];
我的问题是我在滚动时看不到最后一行。有人帮我修理它。 提前谢谢。