123456789101112131415161718192021 |
- //
- // ZBUseStep.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/11.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBUseStep : UIView
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *contentLabel;
- @property(nonatomic,strong)UIButton *okBtn;
- @property(nonatomic,copy)void (^stepBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|