XYMountListTableViewCell.h 513 B

12345678910111213141516171819202122232425
  1. //
  2. // XYMountListTableViewCell.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/1/13.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseTableViewCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol XYMountListTableViewCellDelegate <NSObject>
  11. - (void)selectUseMountAtIndexPath:(NSIndexPath *)indexPath;
  12. @end
  13. @interface XYMountListTableViewCell : BaseTableViewCell<YLConfigureCell>
  14. @property (nonatomic, readwrite, weak) id<XYMountListTableViewCellDelegate>delegate;
  15. @end
  16. NS_ASSUME_NONNULL_END