1234567891011121314151617181920212223 |
- //
- // JXVipDetailBottomView.h
- // shiku_im
- //
- // Created by cindy on 2020/6/3.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JXVipDetailBottomView : UIView
- @property (nonatomic, strong) UIView *lineView;
- @property (nonatomic, strong) UIImageView *imgView;
- @property (nonatomic, strong)UILabel *zunxiangLabel;
- @property (nonatomic, strong) UIButton *button;
- @property (nonatomic, strong)UIImageView *buttonIconImageView;
- @property (nonatomic, strong)UILabel *buttonTitleLabel;
- @property (nonatomic, strong)UILabel *buttonDetailLabel;
- @end
- NS_ASSUME_NONNULL_END
|