PaperCollectionView
PaperCollectionView copied to clipboard
Facebook "Paper" like collection view
Hi, When I try to instantiate, nothing appears... ``` paperView = PaperView(frame:CGRectZero) paperView.translatesAutoresizingMaskIntoConstraints = false paperView.delegate = self paperView.datasource = self paperView.parentViewController = self paperView.collectionViewController.collectionView?.registerClass(CustomPaperCell.self, forCellWithReuseIdentifier: kReuseID) paperView.addShadow() self.view.addSubview(paperView) NSLayoutConstraint.init(item:paperView.superview!,...
If I embed the PaperCollectionView within an UITabBarController, the maximized screen height is slightly out of bounds. How do I configure the animation to consider the height of the TabBar?