CreateAuctionView.h 426 B

1234567891011121314151617181920212223
  1. //
  2. // CreateAuctionView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/10/14.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol CreateAuctionViewDelegate <NSObject>
  10. - (void)chooseButton:(UIButton *)button;
  11. @end
  12. @interface CreateAuctionView : UIView
  13. @property (nonatomic, weak) id<CreateAuctionViewDelegate>delegate;
  14. - (void)createVieWith:(NSInteger)i andNumber:(NSInteger)j;
  15. @end