This commit is contained in:
启星
2025-08-11 10:43:19 +08:00
commit fb2c58d96f
8839 changed files with 709982 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
//
// CRBoxInputCell.h
// CaiShenYe
//
// Created by Chobits on 2019/1/3.
// Copyright © 2019 Chobits. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CRBoxInputCellProperty.h"
NS_ASSUME_NONNULL_BEGIN
#define CRBoxCursoryAnimationKey @"CRBoxCursoryAnimationKey"
#define CRBoxInputCellID @"CRBoxInputCellID"
@interface CRBoxInputCell : UICollectionViewCell
/**
cursor
You should not use these properties, unless you know what you are doing.
*/
@property (strong, nonatomic) UIView *cursorView;
@property (assign, nonatomic) BOOL ifNeedCursor;
/**
boxInputCellProperty
You should not use these properties, unless you know what you are doing.
*/
@property (strong, nonatomic) CRBoxInputCellProperty *boxInputCellProperty;
// 你可以在继承的子类中重写父类方法
// You can inherit and rewrite
- (UIView *)createCustomSecurityView __deprecated_msg("Please use `customSecurityViewBlock` in CRBoxInputCellProperty.");
@end
NS_ASSUME_NONNULL_END