TUIFaceSegementScrollView.h 735 B

12345678910111213141516171819202122232425
  1. //
  2. // TUIFaceSegementScrollView.h
  3. // TUIEmojiPlugin
  4. //
  5. // Created by wyl on 2023/11/15.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TUIFaceView.h"
  10. #import "TUIFaceVerticalView.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @class TUIFaceGroup;
  13. @interface TUIFaceSegementScrollView : UIView
  14. @property(nonatomic, copy) void(^onScrollCallback)(NSInteger indexPage);
  15. @property(strong, nonatomic) UIScrollView *pageScrollView;
  16. - (void)setItems:(NSArray<TUIFaceGroup *> *)items delegate:(id <TUIFaceVerticalViewDelegate>) delegate;
  17. - (void)updateContainerView;
  18. - (void)setPageIndex:(NSInteger)index;
  19. - (void)setAllFloatCtrlViewAllowSendSwitch:(BOOL)isAllow;
  20. - (void)updateRecentView;
  21. @end
  22. NS_ASSUME_NONNULL_END