ShareGoodsAlert.h 398 B

123456789101112131415161718192021
  1. //
  2. // ShareGoodsAlert.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2021/6/7.
  6. // Copyright © 2021 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CommodityDetailModel.h"
  10. @interface ShareGoodsAlert : UIView
  11. {
  12. UIView *backView;
  13. }
  14. @property (nonatomic, strong)UILabel *subTitle;
  15. -(instancetype)initWithFrame:(CGRect)frame andGoodsModel:(CommodityDetailModel *)goodsModel;
  16. @end