LZImageBrowserForceTouchViewController.h 594 B

12345678910111213141516171819
  1. //
  2. // LZImageBrowserForceTouchViewController.h
  3. // LZImageDetail
  4. //
  5. // Created by shenzhenshihua on 2018/7/17.
  6. // Copyright © 2018年 shenzhenshihua. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^ForceTouchActionBlock)(NSInteger selectIndex, NSString *title);
  10. @interface LZImageBrowserForceTouchViewController : UIViewController
  11. @property(nonatomic,strong)UIImage *showOriginForceImage;
  12. @property(nonatomic,copy)NSString *showForceImageUrl;
  13. @property(nonatomic,copy)NSArray * previewActionTitls;
  14. @property(nonatomic,copy)ForceTouchActionBlock forceTouchActionBlock;
  15. @end