1234567891011121314151617181920212223242526272829303132 |
- //
- // YMSheetPopupView.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/4.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseView.h"
- #import "YMBaseTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^ListDidSelectIndexBlock)(NSInteger index);
- typedef void(^CloseButtonBlock)(void);
- @interface YMSheetPopupView : YMBaseView
- /** 列表选中下标回调 */
- @property (nonatomic, copy) ListDidSelectIndexBlock selectIndexBlock;
- /** 关闭按钮回调 */
- @property (nonatomic, copy) CloseButtonBlock closeBlock;
- /**
- 配置项目列表
- @param itemList 项目列表
- */
- - (void)configutationWithItemList:(NSArray*)itemList;
- @end
- @interface YMSheetCell : YMBaseTableViewCell
- @end
- NS_ASSUME_NONNULL_END
|