SaleCell.h 672 B

123456789101112131415161718192021222324
  1. //
  2. // SaleCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/8/10.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol ASaleCellDelegate <NSObject>
  10. @optional
  11. - (void)rorateSign:(UIButton *)sender;
  12. @end
  13. @interface SaleCell : UITableViewCell
  14. @property (weak, nonatomic) IBOutlet UILabel *left_Name_Lab;
  15. @property (weak, nonatomic) IBOutlet UIImageView *diamond_ImgView;
  16. @property (weak, nonatomic) IBOutlet UILabel *right_Num_Lab;
  17. @property (weak, nonatomic) IBOutlet UIImageView *expand_ImgView;
  18. @property(nonatomic, weak)id <ASaleCellDelegate >delegate;
  19. //modle 未定!!!!!!!!!!!
  20. //vc
  21. //Method
  22. @end