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