24 lines
372 B
Objective-C
24 lines
372 B
Objective-C
//
|
|
// BaseCell.h
|
|
// keyBoard
|
|
//
|
|
// Common base cell with default selection style and hook for setup.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
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
|
|
|