XYMarkingFriendsSkillListTableViewCell.h 846 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // XYMarkingFriendsSkillListTableViewCell.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/12/7.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseTableViewCell.h"
  9. #import "XYSkillVoicePlayView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class XYMarkingFriendsSkillListTableViewCell, XYSkillUserModel;
  12. @protocol XYMarkingFriendsSkillListTableViewCellDelegate <NSObject>
  13. - (void)cell:(XYMarkingFriendsSkillListTableViewCell *)cell didClickVoicePlayActionAtIndexPath:(NSIndexPath *)indexPath;
  14. @end
  15. @interface XYMarkingFriendsSkillListTableViewCell : BaseTableViewCell<YLConfigureCell>
  16. @property (nonatomic, weak) id<XYMarkingFriendsSkillListTableViewCellDelegate>delegate;
  17. @property (nonatomic, strong) XYSkillVoicePlayView *voicePlayView;
  18. @property (nonatomic, strong) XYSkillUserModel *skillModel;
  19. @end
  20. NS_ASSUME_NONNULL_END