KSImageShareViewController.h 823 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // KSImageShareViewController.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/9/21.
  6. //
  7. #import "KSBaseViewController.h"
  8. #import "JXCategoryView.h"
  9. #import "JXPagerView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef NS_ENUM(NSInteger, SHAREGROUP_TYPE) {
  12. SHAREGROUP_TYPE_SUCCESS,
  13. SHAREGROUP_TYPE_FAIL,
  14. };
  15. typedef void(^ShareGroupCallback)(BOOL isSuccess, NSString * _Nonnull descMsg);
  16. @interface KSImageShareViewController : KSBaseViewController<JXCategoryListContentViewDelegate>
  17. @property (nonatomic, strong) JXPagerView *pagerView;
  18. @property (nonatomic, strong, readonly) JXCategoryTitleView *categoryView;
  19. @property (nonatomic, strong) NSArray <NSString *> *titles;
  20. @property (nonatomic, assign) UIImage *shareImage;
  21. - (void)shareGroupCallback:(ShareGroupCallback)callback;
  22. @end
  23. NS_ASSUME_NONNULL_END