2017-05-27 6 views
0

テキストを表示するために各ビューでUAGabelを使ってpagecontrolを作成するにはどうすればよいですか?私はviecontroller内のスクロールビューとテキストを表示するためのラベルを持っています。私は、さまざまなテキストを表示するために多くのビューを作成する必要があります。あなたが機能を有効にページングとcollectionViewを使用することができます代わりにscrollViewを使用しての各ビューでテキストを表示するpagecontrolを作成する方法

+0

あなたは 'UILabel'sで' UIPageControl'のドットを交換したいですか? –

答えて

0

.. 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); 
} 

おかげ

関連する問題