12345678910111213141516171819202122232425 |
- //
- // XYVoiceRoomCreateTableViewCell.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/7/7.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYVoiceRoomCreateTableViewCellDelegate <NSObject>
- - (void)textChangeWithText:(NSString *)text atIndexPath:(NSIndexPath *)indexPath;
- @end
- @interface XYVoiceRoomCreateTableViewCell : BaseTableViewCell<YLConfigureCell>
- @property (nonatomic, weak) id<XYVoiceRoomCreateTableViewCellDelegate>delegate;
- @end
- NS_ASSUME_NONNULL_END
|