JXVipLevelView.h 476 B

12345678910111213141516171819202122
  1. //
  2. // JXVipLevelView.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/6/14.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^JIxinBlock)(NSString *jixinStr);
  11. @interface JXVipLevelView : UIView
  12. @property (nonatomic,weak) UIButton *vipVideoBtn;
  13. @property (nonatomic,weak) UILabel *subTitle;
  14. @property (nonatomic,copy) JIxinBlock Block;
  15. @property (nonatomic,copy) NSString *strURL;
  16. @end
  17. NS_ASSUME_NONNULL_END