1234567891011121314151617181920 |
- //
- // KBShareImgPopView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/7/10.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBPopShareGoodView.h"
- #import "KBGoodDetailModel.h"
- @interface KBShareImgPopView : UIView
- @property (nonatomic, strong) KBPopShareGoodView *shareGoodView;
- @property (nonatomic, copy) void(^closeAction)(void);
- - (instancetype)initWithFrame:(CGRect)frame goodModel:(KBGoodDetailModel *)goodModel;
- @end
|