Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMSearchTabbedViewController.h « TabbedView « Search « MapViewControls « CustomViews « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09076d503d2b727d737b950a06b32e46ead66829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "MWMSearchTabbedViewProtocol.h"
#import "MWMSearchTabButtonsView.h"

@interface MWMSearchTabbedViewController : UIViewController

@property (copy, nonatomic) NSArray * tabButtons;
@property (weak, nonatomic) NSLayoutConstraint * scrollIndicatorOffset;
@property (weak, nonatomic) UIView * scrollIndicator;
@property (weak, nonatomic) id<MWMSearchTabbedViewProtocol> delegate;

- (void)tabButtonPressed:(MWMSearchTabButtonsView *)sender;
- (void)resetSelectedTab;

@end