I'm currently migrating from a UITableView to a modern UICollectionView list with compositional layout to create a UITableView-like interface. In Apple's sample code and API documentation, as far as I can tell the only examples given are with preconfigured system styles (e.g. defaultContentConfiguration()) and convenience properties (e.g. text and secondaryText).
How would I, say, integrate my previous custom UITableViewCell made in Interface Builder (with outlets connected to the custom subclass)? I'm open to rewriting it as a fully programmatic cell since it's small enough in scope and needs UI work anyway.
More generally, in a UICollectionView list with compositional layout, how do you add a fully custom cell?
How would I, say, integrate my previous custom UITableViewCell made in Interface Builder (with outlets connected to the custom subclass)? I'm open to rewriting it as a fully programmatic cell since it's small enough in scope and needs UI work anyway.
More generally, in a UICollectionView list with compositional layout, how do you add a fully custom cell?