// // DRTimeLineShareView.h // YouHuiProject // // Created by 小花 on 2019/1/7. // Copyright © 2019年 kuxuan. All rights reserved. // #import #import "DRTimeLineModel.h" NS_ASSUME_NONNULL_BEGIN @protocol TimeLineShareViewDelegate - (void)timelineShareViewDidSeledtedIndex:(NSInteger)index model:(DRTimeLineModel *)model indexPath:(NSIndexPath *)indexPath; @end @interface DRTimeLineShareView : UIView -(void)showInView:(UIView *)view; @property (nonatomic, weak) id delegate; @property (nonatomic, strong) DRTimeLineModel *model; @property (nonatomic, strong) NSIndexPath *indexPath; @end NS_ASSUME_NONNULL_END