添加基本页面

This commit is contained in:
2025-10-29 14:28:57 +08:00
parent 045d5eaff8
commit 23317c9fd4
8 changed files with 146 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
//
// 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