.. scrollview .. 使用コレクション水平フローレイアウトをcollectionViewは、セルを再利用し、多くのメモリを取ると、セルサイズ
// Objective-Cの作成
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
return CGSizeMake(CGRectGetWidth(collectionView.frame), (CGRectGetHeight(collectionView.frame)));
}
//Swift
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: screenWidth, height: screenWidth);
}
おかげ
あなたは 'UILabel'sで' UIPageControl'のドットを交換したいですか? –