KSShareChooseViewController.h 658 B

1234567891011121314151617181920212223242526
  1. //
  2. // KSShareChooseViewController.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2022/6/9.
  6. //
  7. #import "KSBaseViewController.h"
  8. #import <RongIMKit/RongIMKit.h>
  9. #import "JXCategoryView.h"
  10. #import "JXPagerView.h"
  11. // 选择分享到的群组或个人
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface KSShareChooseViewController : KSBaseViewController <JXCategoryListContentViewDelegate>
  14. @property (nonatomic, strong) RCMessageContent *msgContent;
  15. @property (nonatomic, strong) JXPagerView *pagerView;
  16. @property (nonatomic, strong, readonly) JXCategoryTitleView *categoryView;
  17. @property (nonatomic, strong) NSArray <NSString *> *titles;
  18. @end
  19. NS_ASSUME_NONNULL_END