1234567891011121314151617181920212223 |
- //
- // JXApplyTableViewCell.h
- // shiku_im
- //
- // Created by qiudezheng on 2020/4/29.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JXApplyTableViewCell : UITableViewCell
- @property(strong,nonatomic)UIButton * buttonLabel;
- @property(strong,nonatomic)UIView * progressView;
- @property(strong,nonatomic)UILabel * projectLabel;
- @property(strong,nonatomic)UILabel * descriptionLabel;
- @property(strong,nonatomic)UILabel * detail;
- @property(strong,nonatomic)UILabel * coinLabel;
- @property(assign,nonatomic)float widths;
- @end
- NS_ASSUME_NONNULL_END
|