新UI马甲包

FSBottomTableViewCell.h 556B

1234567891011121314151617181920
  1. //
  2. // FSBottomTableViewCell.h
  3. // FSScrollViewNestTableViewDemo
  4. //
  5. // Created by huim on 2017/5/23.
  6. // Copyright © 2017年 fengshun. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FSScrollContentView.h"
  10. @interface FSBottomTableViewCell : UITableViewCell
  11. @property (nonatomic, strong) FSPageContentView *pageContentView;
  12. @property (nonatomic, strong) NSMutableArray *viewControllers;
  13. @property (nonatomic, assign) BOOL cellCanScroll;
  14. @property (nonatomic, assign) BOOL isRefresh;
  15. @property (nonatomic, strong) NSString *currentTagStr;
  16. @end