12345678910111213141516171819202122232425 |
- //
- // XYPropListTableViewCell.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/1/13.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYPropListTableViewCellDelegate <NSObject>
- - (void)selectUseMountAtIndexPath:(NSIndexPath *)indexPath;
- @end
- @interface XYPropListTableViewCell : BaseTableViewCell<YLConfigureCell>
- @property (nonatomic, readwrite, weak) id<XYPropListTableViewCellDelegate>delegate;
- @end
- NS_ASSUME_NONNULL_END
|