I'm learning about setting up a new UISplitViewController in iOS/iPadOS 14. I have primary, supplementary, and secondary view controllers configured on the splitViewController using setViewController(for:) method. I'm using the primary view controller as a Sidebar, and have prefersLargeTitles set to true on it.
It seems like when I set up a UICollectionView in the Sidebar view controller, it causes the large title to go away. Configuring the collection view via frame (collectionView.frame = view.bounds), or via programmatic constraints doesn't seem to matter - the large title goes away either way.
Is this a bug, or is there something I'm doing wrong? Thanks!
It seems like when I set up a UICollectionView in the Sidebar view controller, it causes the large title to go away. Configuring the collection view via frame (collectionView.frame = view.bounds), or via programmatic constraints doesn't seem to matter - the large title goes away either way.
Is this a bug, or is there something I'm doing wrong? Thanks!