I defined a UICollectionViewCell
in UIStoryboard
, which I want to use in multiple UIViewControllers
.
Is there any way, that changes to the cell in the storyboard are propagated to all the other instances? Back in the day it was possible to also put a UIView (or in this case UICollectionViewCell
) into a xib-file and directly instantiate that, but with storyboard I can't figure it out. Is this possible?
The UICollectionViewCell
is subclassed, but the layout is defined in the storyboard.