XYPropListTableViewCell.h 509 B

12345678910111213141516171819202122232425
  1. //
  2. // XYPropListTableViewCell.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 XYPropListTableViewCellDelegate <NSObject>
  11. - (void)selectUseMountAtIndexPath:(NSIndexPath *)indexPath;
  12. @end
  13. @interface XYPropListTableViewCell : BaseTableViewCell<YLConfigureCell>
  14. @property (nonatomic, readwrite, weak) id<XYPropListTableViewCellDelegate>delegate;
  15. @end
  16. NS_ASSUME_NONNULL_END