SafeHelperCollectionView.h 401 字节
//
//  SafeHelperCollectionView.h
//  DreamSleep
//
//  Created by peter on 2022/4/12.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

/// 舒眠课程、助眠音乐集合视图
@interface SafeHelperCollectionView : UICollectionView

- (instancetype)initWithCellIndex:(NSInteger)cellIndex;

- (void)reloadWithData:(NSArray *)dataArr cellIndex:(NSInteger)cellIndex;

@end

NS_ASSUME_NONNULL_END