暫無描述

FKLadderTableView.h 716B

12345678910111213141516171819202122232425
  1. //
  2. // FKLadderTableView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/8/12.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKLadderTableView : UIView
  10. @property (nonatomic, strong) UIScrollView *bgScrollView;
  11. @property (nonatomic, strong) FKRefreshControl *upControl;
  12. @property (nonatomic, strong) FKRefreshControl *downControl;
  13. - (instancetype)initWithUpTableView:(UITableView *)upTableView
  14. downTableView:(UITableView *)downTableView
  15. downSegmentView:(UIView *)downSegmentView
  16. delegate:(id <UITableViewDelegate, UITableViewDataSource, RefreshControlDelegate>)delegate;
  17. - (void)goToDown;
  18. @end