12345678910111213141516171819202122 |
- //
- // JXVipLevelView.h
- // shiku_im
- //
- // Created by 123 on 2020/6/14.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^JIxinBlock)(NSString *jixinStr);
- @interface JXVipLevelView : UIView
- @property (nonatomic,weak) UIButton *vipVideoBtn;
- @property (nonatomic,weak) UILabel *subTitle;
- @property (nonatomic,copy) JIxinBlock Block;
- @property (nonatomic,copy) NSString *strURL;
- @end
- NS_ASSUME_NONNULL_END
|