12345678910111213141516171819202122232425 |
- //
- // FKLadderTableView.h
- // FirstLink
- //
- // Created by jack on 16/8/12.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKLadderTableView : UIView
- @property (nonatomic, strong) UIScrollView *bgScrollView;
- @property (nonatomic, strong) FKRefreshControl *upControl;
- @property (nonatomic, strong) FKRefreshControl *downControl;
- - (instancetype)initWithUpTableView:(UITableView *)upTableView
- downTableView:(UITableView *)downTableView
- downSegmentView:(UIView *)downSegmentView
- delegate:(id <UITableViewDelegate, UITableViewDataSource, RefreshControlDelegate>)delegate;
- - (void)goToDown;
- @end
|