AuctionAloneCell.h 498 B

1234567891011121314151617181920212223242526
  1. //
  2. // AuctionAloneCell.h
  3. // BuguLive
  4. //
  5. // Created by hym on 2016/12/1.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol AuctionAloneCellDelegate <NSObject>
  10. @optional
  11. - (void)buttonActionGoNetVC:(NSString *)tile;
  12. @end
  13. @interface AuctionAloneCell : UITableViewCell
  14. @property (nonatomic, weak) id <AuctionAloneCellDelegate> delegate;
  15. @property (nonatomic, strong) NSString *tile;
  16. + (instancetype)cellWithTbaleview:(UITableView *)newTableview;
  17. @end