TUIJoinGroupMessageCell.h 740 B

123456789101112131415161718192021222324252627282930
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. #import <TIMCommon/TUISystemMessageCell.h>
  4. #import "TUIJoinGroupMessageCellData.h"
  5. NS_ASSUME_NONNULL_BEGIN
  6. @class TUIJoinGroupMessageCell;
  7. @protocol TUIJoinGroupMessageCellDelegate <NSObject>
  8. @optional
  9. - (void)didTapOnNameLabel:(TUIJoinGroupMessageCell *)cell;
  10. - (void)didTapOnSecondNameLabel:(TUIJoinGroupMessageCell *)cell;
  11. - (void)didTapOnRestNameLabel:(TUIJoinGroupMessageCell *)cell withIndex:(NSInteger)index;
  12. @end
  13. @interface TUIJoinGroupMessageCell : TUISystemMessageCell
  14. @property TUIJoinGroupMessageCellData *joinData;
  15. @property(nonatomic, weak) id<TUIJoinGroupMessageCellDelegate> joinGroupDelegate;
  16. @end
  17. NS_ASSUME_NONNULL_END