Files
CRBoxInputView/PodCode/Classes/CRBoxInputCell.h

39 lines
980 B
C
Raw Normal View History

2019-01-03 18:03:44 +08:00
//
// 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
2019-01-09 11:39:00 +08:00
/**
cursor
You should not use these properties, unless you know what you are doing.
*/
2019-01-04 15:28:43 +08:00
@property (strong, nonatomic) UIView *cursorView;
@property (assign, nonatomic) BOOL ifNeedCursor;
2019-01-03 18:03:44 +08:00
2019-01-09 11:39:00 +08:00
/**
boxInputCellProperty
You should not use these properties, unless you know what you are doing.
*/
2019-01-03 18:03:44 +08:00
@property (strong, nonatomic) CRBoxInputCellProperty *boxInputCellProperty;
2019-01-06 18:59:10 +08:00
2019-06-11 12:21:04 +08:00
// 你可以在继承的子类中重写父类方法
2019-06-11 08:47:39 +08:00
// You can inherit and rewrite
- (UIView *)createCustomSecurityView __deprecated_msg("Please use `customSecurityViewBlock` in CRBoxInputCellProperty.");
2019-01-03 18:03:44 +08:00
@end
NS_ASSUME_NONNULL_END