Files
keyboard/keyBoard/Class/Base/V/BaseCell.h
2025-10-29 14:28:57 +08:00

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