I've got an universal iOS app that I originally made using UITableViews, but it's time to update it with UICollectionViews so that I can take better advantage of the display on iPad.
There is a LOT of functionality that comes along with UITableView and I feel like I'm losing a ton in exchange for the flexibility of grid layouts and such.
For example, the separator line between cells is something I have to implement myself. Not too much problem.
Or Header views, I know how to add them, but it appears that I have to hand-code the settings to try to mimic the style and color themes of the UITableView instead of just having a default that matches. Sure, I can try to mimic it, but as soon as iOS 10 comes out and they change the look of the header views, then suddenly my app doesn't match anymore and looks dated.
But disclosure indicators are an even bigger problem. Is there any way to get a disclosure indicator on my UICollectionViewCell in a built-in fashion? Yes, I know that I can try to find a graphic that looks similar to the disclosure indicator and add it to my custom cell, but for something that is baked in to the UITableViewCells, I'm not particularly loving the idea of having to custom add all of this functionality to every single cell type I made for UICollectionViews. Especially when iOS 10 drops and all of my disclosure indicators are out of date again.
Not to mention that I'm also losing the built-in segue functionality for disclosure indicators.
Am I missing something? Is there some way to tap in to take advantage of really nice defaults in a UICollectionView so that it will look like a UITableView?