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