BBATableViewSection.h 584 Bytes
//
//  BBATableViewSection.h
//  BBAPods
//
//  Created by hyman on 2017/4/14.
//  Copyright © 2017年 Baidu. All rights reserved.
//

#import <UIKit/UIKit.h>

__attribute__ ((deprecated("该类已被废弃,请勿再使用")))
@interface BBATableViewSection : NSObject

@property (nonatomic, copy) NSString *sectionKey;

@property (nonatomic, assign) CGFloat heightForHeader;
@property (nonatomic, assign) CGFloat heightForFooter;
@property (nonatomic, strong) UIView *headerView;
@property (nonatomic, strong) UIView *footerView;
@property (nonatomic, copy) NSArray *items;

@end