FiveSectionTableViewCell.h 688 B

1234567891011121314151617181920212223242526
  1. //
  2. // FiveSectionTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/5.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol acutionButtonDelegate <NSObject>
  10. - (void)buttonClickWithTag:(int)tag;
  11. @end
  12. @interface FiveSectionTableViewCell : UITableViewCell
  13. @property (nonatomic, weak) id<acutionButtonDelegate>delegate;
  14. @property (weak, nonatomic) IBOutlet UILabel *auctionLabel;
  15. @property (weak, nonatomic) IBOutlet UIButton *depositButton;
  16. @property (weak, nonatomic) IBOutlet UIButton *continueButton;
  17. @property (weak, nonatomic) IBOutlet UILabel *auctionMoneyLabel;
  18. @property (weak, nonatomic) IBOutlet UIImageView *goldView;
  19. @end