UICollectionVIEW without using storyboards?

I read these tutorials on UICollectionView:

http://blogs.captechconsulting.com/blog/paul-dakessian/ios-6-tutorial-getting-started-collection-views

http://invasivecode.tumblr.com/post/34581461219/an-introduction-to-collection-views .

I know it is easy to use CollectionView in a storyboard, but I want to use a UICollectionView with xib instead of a storyboard.

Thanks in advance.

+7
source share
2 answers
+11
source

An XIB file usually contains exactly one view controller (and many objects as part of this view controller).

And the storyboard (essentially, essentially) is a collection of XIB files compiled as segues, so you can follow the stream.

What you really want to do here, simply replace the word โ€œXIBโ€ with the word โ€œStoryboardโ€ in almost any tutorial that you look at, bearing in mind that without a storyboard, you will not use segues to move from the view controller to the next controller.

And here is the UICollectionView tutorial, which you can link to, what happens to talk about xib files, for download . I hope this information helps you!

+5
source

All Articles