| 123456789101112131415161718192021 |
- //
- // ShareGoodsAlert.h
- // yunbaolive
- //
- // Created by ybRRR on 2021/6/7.
- // Copyright © 2021 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CommodityDetailModel.h"
- @interface ShareGoodsAlert : UIView
- {
- UIView *backView;
- }
- @property (nonatomic, strong)UILabel *subTitle;
- -(instancetype)initWithFrame:(CGRect)frame andGoodsModel:(CommodityDetailModel *)goodsModel;
- @end
|