I'm using ViewDeck to make a slide menu, and would like to shorten the width of my CollectionView, which functions as a menu. I can't seem to find any delegate methods to do so though.
I'm using Storyboards, and this is my issue:

Perhaps some sort of setup using? :
- (UIEdgeInsets)collectionView: (UICollectionView )collectionView layout:(UICollectionViewLayout)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
I'll leave this up because I had trouble finding the answer, but throwing this in my
UICollectionViewControllersubclass'viewDidLoaddid the trick:self.collectionView.frame = CGRectMake(0, 0, 268, self.view.frame.size.height);Where 268 = screen width (320) - width of my menu ledge (52).