STTableSaleBuyBtnCell.h 659 B

12345678910111213141516171819202122
  1. //
  2. // STTableSaleBuyBtnCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/21.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @class STTableSaleBuyBtnCell;
  11. @protocol STTableSaleBuyBtnCellDelegate <NSObject>
  12. @optional
  13. //bt事件外传
  14. -(void)showSTTableSaleBuyBtnCell:(STTableSaleBuyBtnCell *)stTableSaleBuyBtnCell andClickBtn:(UIButton *)clickBtn;
  15. @end
  16. @interface STTableSaleBuyBtnCell : STTableBaseCell
  17. @property (weak, nonatomic) IBOutlet UIButton *leftBtn;
  18. @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
  19. @property (weak, nonatomic) id<STTableSaleBuyBtnCellDelegate>delegate;
  20. @end