vipBuyView.h 373 B

1234567891011121314151617181920
  1. //
  2. // vipBuyView.h
  3. // live1v1
  4. //
  5. // Created by IOS1 on 2019/5/9.
  6. // Copyright © 2019 IOS1. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^vipBuySuccess)();
  11. @interface vipBuyView : UIView
  12. - (instancetype)initWithMsg:(NSDictionary *)msg;
  13. - (void)show;
  14. @property (nonatomic,copy) vipBuySuccess block;
  15. @end
  16. NS_ASSUME_NONNULL_END