建立一個 UICollectionView
使用 CGRect
幀初始化 UICollectionView
:
迅速:
let collection = UICollectionView(frame: CGRect(x: 0, y: 0, width: 200, height: 21))
目標 C:
UICollectionView *collection = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, 200, 21)];
你還可以在 Interface Builder 中建立 UICollectionView