19 lines
337 B
C
19 lines
337 B
C
|
|
//
|
|||
|
|
// KBHistoryMoreCell.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// 历史记录第二行尾部的“展开更多”按钮 cell(向下箭头)。
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <UIKit/UIKit.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
@interface KBHistoryMoreCell : UICollectionViewCell
|
|||
|
|
/// 固定尺寸建议(高度与标签一致 32)
|
|||
|
|
+ (CGSize)fixedSize;
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|
|||
|
|
|