Brak opisu

FKSubmitSingleChannelView.h 1.0KB

123456789101112131415161718192021222324252627282930
  1. //
  2. // FKSubmitSingleChannelView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/1/19.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKTransformChannelItem.h"
  10. @interface FKSubmitSingleChannelView : UIView
  11. @property (nonatomic, assign) kSubmitChannelType channelType;
  12. @property (nonatomic, strong) UILabel *channelLabel;
  13. @property (nonatomic, strong) UILabel *ruleLabel;
  14. @property (nonatomic, strong) UILabel *priceLabel;
  15. //@property (nonatomic, strong) UILabel *priceCutLabel;
  16. @property (nonatomic, strong) UILabel *billWightLabel;
  17. @property (nonatomic, strong) UIView *bottomLine;
  18. @property (nonatomic, strong) UIButton *clickActionBtn;
  19. @property (nonatomic, strong) UIButton *arrowBtn;
  20. - (void)resetContentForChannelItem:(FKTransformChannelItem *)channelItem
  21. enable:(BOOL)enable
  22. billWeight:(NSString *)billWeight;
  23. @end