LoginSignup
6
5

More than 5 years have passed since last update.

横スクロールな UICollectionView を作る

Last updated at Posted at 2015-07-02

絶対簡単に出来るだろ?と思いつつも地味にまとまった情報が見つけにくかったので忘備録として投稿。
※要所のみ抜粋

UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
[layout setScrollDirection:UICollectionViewScrollDirectionHorizontal];

UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
[collectionView setPagingEnabled:YES];
6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5