Is there a way to change the grid size of TTThumbsViewController?

I am using TTThumbsViewController to display a grid of thumbnails, very simple. However, the tricky part is what if I want to display a custom view at the bottom of the grid? And I don't want the view to be part of a scrollable grid. How do I resize the thumbnail grid and then Attach my view to this controller view? Think about this custom toolbar thing

alt text

+2


source to share


1 answer


You need to create a parent ViewController that contains TTThumbsViewController and your own custom ViewController. If you need to programmatically resize TTThumbsViewController, you can access the real view through the view property and set its frame property.



0


source







All Articles