1234567891011121314151617181920 |
- //
- // KDPSellingPointView.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPSellingPointView : UIView
- @property(nonatomic,strong)UILabel *pointLabel;
- @property(nonatomic,strong)UIView *hotView;
- @property(nonatomic,copy)NSString *point_good;
- @end
- NS_ASSUME_NONNULL_END
|