2
0

WFCUMentionUserTableViewController.h 681 B

123456789101112131415161718192021222324
  1. //
  2. // WFCUMentionUserTableViewController.h
  3. // WFChatUIKit
  4. //
  5. // Created by WF Chat on 2018/10/24.
  6. // Copyright © 2018 WF Chat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol WFCUMentionUserDelegate <NSObject>
  11. - (void)didMentionType:(int)type user:(NSString *)userId range:(NSRange)range text:(NSString *)text;
  12. - (void)didCancelMentionAtRange:(NSRange)range;
  13. @end
  14. @class WFCCConversation;
  15. @interface WFCUMentionUserTableViewController : UIViewController
  16. @property (nonatomic, strong)NSString *groupId;
  17. @property (nonatomic, weak)id<WFCUMentionUserDelegate> delegate;
  18. @property (nonatomic, assign)NSRange range;
  19. @end
  20. NS_ASSUME_NONNULL_END