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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorv.mikhaylenko <v.mikhaylenko@corp.mail.ru>2015-06-16 20:21:32 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:40 +0300
commit4e8f1cc18f1a594e5cd35a7ee85937939ac3a4f2 (patch)
tree878b831909555983c98433dd0435e02b10b1787c /iphone/Maps/Classes/MWMPlacePageViewManager.h
parent00c153b50ff6c92c312fb9fdc7662df4eef54388 (diff)
[ios] Added safety interface for work with metadata dictionary.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageViewManager.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageViewManager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageViewManager.h b/iphone/Maps/Classes/MWMPlacePageViewManager.h
index 6eee078c8d..624513108f 100644
--- a/iphone/Maps/Classes/MWMPlacePageViewManager.h
+++ b/iphone/Maps/Classes/MWMPlacePageViewManager.h
@@ -10,13 +10,14 @@
#include "map/user_mark.hpp"
-@class MWMPlacePageEntity;
+@class MWMPlacePageEntity, MWMPlacePageNavigationBar;
@protocol MWMPlacePageViewDragDelegate;
@interface MWMPlacePageViewManager : NSObject
@property (weak, nonatomic, readonly) UIViewController<MWMPlacePageViewDragDelegate> * ownerViewController;
@property (nonatomic, readonly) MWMPlacePageEntity * entity;
+@property (nonatomic) MWMPlacePageNavigationBar * iPhoneNavigationBar;
- (instancetype)initWithViewController:(UIViewController<MWMPlacePageViewDragDelegate> *)viewController;
- (void)showPlacePageWithUserMark:(unique_ptr<UserMarkCopy>)userMark;
@@ -29,6 +30,7 @@
- (void)layoutPlacePageToOrientation:(UIInterfaceOrientation)orientation;
- (void)reloadBookmark;
- (void)dragPlacePage:(CGPoint)point;
+- (void)showDirectionViewWithTitle:(NSString *)title type:(NSString *)type;
- (instancetype)init __attribute__((unavailable("init is unavailable, call initWithViewController: instead")));