| 1234567891011121314151617181920 |
- //
- // vipBuyView.h
- // live1v1
- //
- // Created by IOS1 on 2019/5/9.
- // Copyright © 2019 IOS1. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^vipBuySuccess)();
- @interface vipBuyView : UIView
- - (instancetype)initWithMsg:(NSDictionary *)msg;
- - (void)show;
- @property (nonatomic,copy) vipBuySuccess block;
- @end
- NS_ASSUME_NONNULL_END
|