I'm using FGalleryViewController from https://github.com/gdavis/FGallery-iPhone & it looks to do pretty much everything I need. I have my delegate & data source setup & I'm displaying photos in my own view controller. For specifics of how I've integrated this class into my app, see:
https://github.com/seanoshea/krissytosi-ios/blob/master/KrissyTosi/KrissyTosi/Classes/Controller/KTStoreDetailViewController.h https://github.com/seanoshea/krissytosi-ios/blob/master/KrissyTosi/KrissyTosi/Classes/Controller/KTStoreDetailViewController.m
& it's base class:
https://github.com/seanoshea/krissytosi-ios/blob/master/KrissyTosi/KrissyTosi/Classes/Controller/KTBaseGalleryViewController.h https://github.com/seanoshea/krissytosi-ios/blob/master/KrissyTosi/KrissyTosi/Classes/Controller/KTBaseGalleryViewController.m
However, I'd like to be able to control the size/amount of room taken up by the GalleryViewController in my KTStoreDetailViewController. Specifically, I'd like to be able to display some links & buttons underneath the gallery which would allow a user of the application to purchase items contained in the gallery. Is there any way to ensure that the photos in the controller don't take up the full screen? I've tried setting the GalleryViewController's frame, but no luck there. The photos always seem to come in full screen.
Any ideas on how to control the photo sizes?
Thanks,
Sean