JXSearchMoreCell.h 548 B

1234567891011121314151617181920212223
  1. //
  2. // JXSearchMoreCell.h
  3. // shiku_im
  4. //
  5. // Created by IMAC on 2019/8/30.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXSearchMoreCell : UITableViewCell
  11. @property (nonatomic,strong) NSString *imgName;
  12. @property (nonatomic,strong) NSString *moreName;
  13. @property (nonatomic,strong) UIView *baseView;
  14. @property (nonatomic,strong) UIImageView *ImgView;
  15. @property (nonatomic,strong) UILabel *moreLable;
  16. @property (nonatomic,strong) UIView *selectView;
  17. @end
  18. NS_ASSUME_NONNULL_END