JXApplyTableViewCell.h 609 B

1234567891011121314151617181920212223
  1. //
  2. // JXApplyTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by qiudezheng on 2020/4/29.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXApplyTableViewCell : UITableViewCell
  11. @property(strong,nonatomic)UIButton * buttonLabel;
  12. @property(strong,nonatomic)UIView * progressView;
  13. @property(strong,nonatomic)UILabel * projectLabel;
  14. @property(strong,nonatomic)UILabel * descriptionLabel;
  15. @property(strong,nonatomic)UILabel * detail;
  16. @property(strong,nonatomic)UILabel * coinLabel;
  17. @property(assign,nonatomic)float widths;
  18. @end
  19. NS_ASSUME_NONNULL_END