// // BaseCell.h // keyBoard // // Common base cell with default selection style and hook for setup. // #import NS_ASSUME_NONNULL_BEGIN @interface BaseCell : UITableViewCell /// Convenience reuse identifier based on class name + (NSString *)reuseId; /// Override point to add subviews and constraints - (void)setupUI; @end NS_ASSUME_NONNULL_END