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