《省钱达人》与《猎豆优选》UI相同版。域名tbk

DRTimeLineShareView.h 680B

12345678910111213141516171819202122232425262728
  1. //
  2. // DRTimeLineShareView.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 "DRTimeLineModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol TimeLineShareViewDelegate <NSObject>
  12. - (void)timelineShareViewDidSeledtedIndex:(NSInteger)index model:(DRTimeLineModel *)model indexPath:(NSIndexPath *)indexPath;
  13. @end
  14. @interface DRTimeLineShareView : UIView
  15. -(void)showInView:(UIView *)view;
  16. @property (nonatomic, weak) id<TimeLineShareViewDelegate> delegate;
  17. @property (nonatomic, strong) DRTimeLineModel *model;
  18. @property (nonatomic, strong) NSIndexPath *indexPath;
  19. @end
  20. NS_ASSUME_NONNULL_END