123456789101112131415161718192021222324 |
- //
- // KDPIDTipView.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPIDTipView : UIView
- @property(nonatomic,strong)UILabel *pidtitleL;
- @property(nonatomic,strong)UILabel *pidContentL;
- @property(nonatomic,strong)UILabel *pidLabel;
- @property(nonatomic,strong)UIButton *bindBtn;
- @property(nonatomic,strong)UIButton *CancelBtn;
- @property(nonatomic,strong)UIView *backV;
- @property(nonatomic,strong)NSDictionary *resultDic;
- @end
- NS_ASSUME_NONNULL_END
|