12345678910111213141516171819202122 |
- //
- // KDPLiveLeftTableViewCell.h
- // KuDianProject
- //
- // Created by admin on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^checkOrderBlock)(UIButton *btn);
- @interface KDPLiveLeftTableViewCell : UITableViewCell
- @property (nonatomic, copy) checkOrderBlock orderClickBlock;
- @end
- NS_ASSUME_NONNULL_END
|