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-05-21 15:46:10 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:38 +0300
commit279e4649433bcbc06e888d557f77d7dd8708fa98 (patch)
tree2e41fa51f21d070086c2f591287b9ed82cced551 /iphone/Maps/Classes/MWMPlacePage.h
parent9d2141ae12860ba6f587c97ca31d3986be2a4b51 (diff)
[ios] Added place page for landscape and portrait iPhone. Improved UI.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePage.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePage.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePage.h b/iphone/Maps/Classes/MWMPlacePage.h
new file mode 100644
index 0000000000..f5dd3cfbe7
--- /dev/null
+++ b/iphone/Maps/Classes/MWMPlacePage.h
@@ -0,0 +1,29 @@
+//
+// MWMPlacePageView.h
+// Maps
+//
+// Created by v.mikhaylenko on 18.05.15.
+// Copyright (c) 2015 MapsWithMe. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@class MWMBasePlacePageView, MWMPlacePageViewManager, MWMPlacePageActionBar;
+
+@interface MWMPlacePage : NSObject
+
+@property (weak, nonatomic) IBOutlet MWMBasePlacePageView * basePlacePageView;
+@property (weak, nonatomic) IBOutlet UIView * extendedPlacePageView;
+@property (weak, nonatomic) IBOutlet UIImageView *anchorImageView;
+@property (weak, nonatomic, readonly) MWMPlacePageViewManager * manager;
+@property (nonatomic) MWMPlacePageActionBar * actionBar;
+
+- (instancetype)initWithManager:(MWMPlacePageViewManager *)manager;
+- (void)show;
+- (void)dismiss;
+- (void)configure;
+- (void)addBookmark;
+
+- (instancetype)init __attribute__((unavailable("init is unavailable, call initWithManager: instead")));
+
+@end