// // FiveSectionTableViewCell.h // BuguLive // // Created by fanwe2014 on 16/8/5. // Copyright © 2016年 xfg. All rights reserved. // #import @protocol acutionButtonDelegate - (void)buttonClickWithTag:(int)tag; @end @interface FiveSectionTableViewCell : UITableViewCell @property (nonatomic, weak) iddelegate; @property (weak, nonatomic) IBOutlet UILabel *auctionLabel; @property (weak, nonatomic) IBOutlet UIButton *depositButton; @property (weak, nonatomic) IBOutlet UIButton *continueButton; @property (weak, nonatomic) IBOutlet UILabel *auctionMoneyLabel; @property (weak, nonatomic) IBOutlet UIImageView *goldView; @end