I'm developing iMessage Extension app. My problem is that the collection view is visible behind navigation bar in expand mode.
Is there anybody who has experience in this area? Looking for any help.
I'm developing iMessage Extension app. My problem is that the collection view is visible behind navigation bar in expand mode.
Is there anybody who has experience in this area? Looking for any help.
Give constraint to your CollectionView
like this while Constraint to margins
is unselected.
you can try changing the content offset of the collection view to in order to shift it below the navigation bar, something like this:
collectionView.contentOffset = CGPointMake(0, navigationController.navigationBar.frame.size.height)
After give Constraints(Top:0,Left:0,Right:0,Bottom:0),you should give Top Constraints of CollectionView to Top Layout Guide.Bottom ratherthan Superview.Top like this:
CollectionView.Top = Top Layout Guide.Bottom is set to 0.