Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialonurtekin
7,346 PointsCan i use a ViewController as a delegate/datasource for a CollectionVİew in it?
Hi,
I want to use a CollectionView inside my main ViewController instead of a CollectionViewController.
Step 1: Give the delegation and data sourcing duty of this CollectionView to my main ViewController.
Step 2: In implementation file of this ViewController, specify section and item counts and the cell id to reuse.
Step 3: Fill ind the cells.
Is this completely a wrong approach?
onurtekin
7,346 PointsThank you Michael. I had managed to do it and detailed the steps in this discussion here.
Michael Vilabrera
Courses Plus Student 11,252 PointsMichael Vilabrera
Courses Plus Student 11,252 Pointsit is an acceptable approach! Usually if you wanted to separate the scene into half Collection View Controller and something else, or Table View Controller and something else, this was the way to go.