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

UIViewController+Navigation.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3de32fad1835a265fb36ec24bcdc25d6eed37fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
@interface UIViewController (Navigation)

- (void)showBackButton;
- (void)backTap;

- (UIBarButtonItem *)buttonWithImage:(UIImage *)image action:(SEL)action;
- (NSArray<UIBarButtonItem *> *)alignedNavBarButtonItems:(NSArray<UIBarButtonItem *> *)items;

@property (nonatomic, readonly) UIStoryboard * mainStoryboard;

@end