猎豆优选

LDTimeLineShareView.h 680B

12345678910111213141516171819202122232425262728
  1. //
  2. // LDTimeLineShareView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2019/1/7.
  6. // Copyright © 2019年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "LDTimeLineModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol TimeLineShareViewDelegate <NSObject>
  12. - (void)timelineShareViewDidSeledtedIndex:(NSInteger)index model:(LDTimeLineModel *)model indexPath:(NSIndexPath *)indexPath;
  13. @end
  14. @interface LDTimeLineShareView : UIView
  15. -(void)showInView:(UIView *)view;
  16. @property (nonatomic, weak) id<TimeLineShareViewDelegate> delegate;
  17. @property (nonatomic, strong) LDTimeLineModel *model;
  18. @property (nonatomic, strong) NSIndexPath *indexPath;
  19. @end
  20. NS_ASSUME_NONNULL_END