1234567891011121314151617181920 |
- //
- // FSBottomTableViewCell.h
- // FSScrollViewNestTableViewDemo
- //
- // Created by huim on 2017/5/23.
- // Copyright © 2017年 fengshun. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FSScrollContentView.h"
- @interface FSBottomTableViewCell : UITableViewCell
- @property (nonatomic, strong) FSPageContentView *pageContentView;
- @property (nonatomic, strong) NSMutableArray *viewControllers;
- @property (nonatomic, assign) BOOL cellCanScroll;
- @property (nonatomic, assign) BOOL isRefresh;
- @property (nonatomic, strong) NSString *currentTagStr;
- @end
|