BBAPannelComponent.h
660 Bytes
//
// BBAPannelComponent.h
// BBAPods
//
// Created by liurui12 on 16/8/18.
// Copyright © 2016年 Baidu. All rights reserved.
//
#import <UIKit/UIKit.h>
@class BBAGridPannelViewCell;
@protocol BBAGridPannelHeaderDataSource;
@interface BBAPannelComponent : UIView
@property(nonatomic , weak, nullable)id<BBAGridPannelHeaderDataSource> headerDataSource;
@property (nonatomic, copy, nullable) NSString *cellIndentifier;
- (void)reLayoutWithFrame:(CGRect)frame;
- (void)reloadData;
- (void)reloadItemsAtIndexPaths:(NSArray<NSIndexPath *> *_Nullable)indexPaths;
- (BBAGridPannelViewCell *_Nullable)cellForIdentifier:(NSString *_Nonnull)identifier;
@end