Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. cell.nameLabel?.text = contact.objectAtIndex(0) as String
  2.  
  3. self.contactsCollection.tag = 112
  4. self.contactsCollection.registerClass(CollectionCell.self, forCellWithReuseIdentifier: "collectionCell")
  5. self.flowLayout.scrollDirection = UICollectionViewScrollDirection.Horizontal
  6. self.flowLayout.minimumInteritemSpacing = 2.0
  7. self.flowLayout.minimumLineSpacing = 2.0
  8. self.contactsCollection.pagingEnabled = true
  9. self.contactsCollection.showsHorizontalScrollIndicator = false
  10. self.contactsCollection.collectionViewLayout = self.flowLayout
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement