AuctionCell.h 468 B

123456789101112131415161718192021
  1. //
  2. // AuctionCell.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 AInComeDataCellDelegate <NSObject>
  10. @optional
  11. - (void)goNextVC:(UIButton *)sender;
  12. @end
  13. @interface AuctionCell : UITableViewCell
  14. //兑换/微信提现
  15. @property (strong, nonatomic) IBOutletCollection(UIButton) NSArray *btn_Array;
  16. @property(nonatomic, weak)id <AInComeDataCellDelegate >delegate;
  17. @end