| 123456789101112131415161718192021 |
- //
- // CellWithBtnView.h
- // 隐私保护
- //
- // Created by APPLE on 2023/8/24.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CellWithBtnView : UIView
- @property(nonatomic,strong)UILabel *topLabel;
- @property(nonatomic,strong)UILabel *downLabel;
- @property(nonatomic,strong)UIButton *rightBtn;
- @end
- NS_ASSUME_NONNULL_END
|