12345678910111213141516171819202122232425262728293031 |
- //
- // XYMarkingFriendsSkillListTableViewCell.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/12/7.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseTableViewCell.h"
- #import "XYSkillVoicePlayView.h"
- NS_ASSUME_NONNULL_BEGIN
- @class XYMarkingFriendsSkillListTableViewCell, XYSkillUserModel;
- @protocol XYMarkingFriendsSkillListTableViewCellDelegate <NSObject>
- - (void)cell:(XYMarkingFriendsSkillListTableViewCell *)cell didClickVoicePlayActionAtIndexPath:(NSIndexPath *)indexPath;
- @end
- @interface XYMarkingFriendsSkillListTableViewCell : BaseTableViewCell<YLConfigureCell>
- @property (nonatomic, weak) id<XYMarkingFriendsSkillListTableViewCellDelegate>delegate;
- @property (nonatomic, strong) XYSkillVoicePlayView *voicePlayView;
- @property (nonatomic, strong) XYSkillUserModel *skillModel;
- @end
- NS_ASSUME_NONNULL_END
|