123456789101112131415161718192021222324 |
- //
- // XYWishCenterTableViewCell.h
- // Timi
- //
- // Created by 翟玉磊 on 2021/10/19.
- //
- #import "BaseTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYWishCenterTableViewCellDelegate <NSObject>
- - (void)wishCenterGiftSwitchValueChangeAtIndexPath:(NSIndexPath *)indexPath;
- @end
- @interface XYWishCenterTableViewCell : BaseTableViewCell<YLConfigureCell>
- @property (nonatomic, weak) id<XYWishCenterTableViewCellDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|