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/MWMPlacePageActionBar.h
parent9d2141ae12860ba6f587c97ca31d3986be2a4b51 (diff)
[ios] Added place page for landscape and portrait iPhone. Improved UI.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageActionBar.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageActionBar.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageActionBar.h b/iphone/Maps/Classes/MWMPlacePageActionBar.h
index e7ca3633af..c5b1c08770 100644
--- a/iphone/Maps/Classes/MWMPlacePageActionBar.h
+++ b/iphone/Maps/Classes/MWMPlacePageActionBar.h
@@ -8,10 +8,14 @@
#import <UIKit/UIKit.h>
-@class MWMBasePlacePageView;
+@class MWMPlacePage;
@interface MWMPlacePageActionBar : UIView
-+ (MWMPlacePageActionBar *)actionBarForPlacePage:(MWMBasePlacePageView *)placePage;
++ (MWMPlacePageActionBar *)actionBarForPlacePage:(MWMPlacePage *)placePage;
+
+- (instancetype)init __attribute__((unavailable("init is unavailable, call actionBarForPlacePage: instead")));
+- (instancetype)initWithCoder:(NSCoder *)aDecoder __attribute__((unavailable("initWithCoder: is unavailable, call actionBarForPlacePage: instead")));
+- (instancetype)initWithFrame:(CGRect)frame __attribute__((unavailable("initWithFrame: is unavailable, call actionBarForPlacePage: instead")));
@end