BBASingleScrollGridPannelView.h
1.09 KB
//
// BBASingleScrollGridPannelView.h
// BBAUIKit
//
// Created by lirui25 on 2018/5/21.
// Copyright © 2018年 Baidu. All rights reserved.
//
#import "BBAPannelComponent.h"
#import "BBAGridPannelViewCell.h"
#import "BBASingleRowGridPannelDataSource.h"
@class BBAGridPannelViewLayout;
@interface BBASingleScrollGridPannelView : BBAPannelComponent
- (nonnull instancetype)initWithFrame:(CGRect)frame
delegate:(nullable id<BBAGridPannelDelegate> )delegate
shareDataSource:(BBASingleRowGridPannelDataSource *_Nullable)shareDataSource
otherDataSource:(BBASingleRowGridPannelDataSource *_Nonnull)otherDataSource
headerDataSource:(nullable id<BBAGridPannelHeaderDataSource>)headerDataSource
style:(BBAPannelCellImageType)style;
@property(nonatomic , weak, nullable)id<BBAGridPannelDelegate> delegate;
@property(nonatomic , weak, nullable)BBASingleRowGridPannelDataSource *shareDataSource;
@property(nonatomic , weak, nullable)BBASingleRowGridPannelDataSource *otherDataSource;
@end