123456789101112131415161718192021222324252627 |
- //
- // XYSkillOrderListTableViewCell.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/11/4.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYSkillOrderListTableViewCellDelegate <NSObject>
- - (void)cellRightButtonClickAtIndexPath:(NSIndexPath *)indexPath;
- - (void)cellLeftButtonClickAtIndexPath:(NSIndexPath *)indexPath;
- - (void)cellRefreshOrderStatusClickAtIndexPath:(NSIndexPath *)indexPath;
- @end
- @interface XYSkillOrderListTableViewCell : BaseTableViewCell<YLConfigureCell>
- @property (nonatomic, weak) id<XYSkillOrderListTableViewCellDelegate>delegate;
- @end
- NS_ASSUME_NONNULL_END
|