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+Animation.h
parent9d2141ae12860ba6f587c97ca31d3986be2a4b51 (diff)
[ios] Added place page for landscape and portrait iPhone. Improved UI.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePage+Animation.h')
-rw-r--r--iphone/Maps/Classes/MWMPlacePage+Animation.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePage+Animation.h b/iphone/Maps/Classes/MWMPlacePage+Animation.h
new file mode 100644
index 0000000000..022c67c2f1
--- /dev/null
+++ b/iphone/Maps/Classes/MWMPlacePage+Animation.h
@@ -0,0 +1,21 @@
+//
+// MWMPlacePage+Animation.h
+// Maps
+//
+// Created by v.mikhaylenko on 19.05.15.
+// Copyright (c) 2015 MapsWithMe. All rights reserved.
+//
+
+#import "MWMPlacePage.h"
+
+@class MWMSpringAnimation;
+
+@interface MWMPlacePage (Animation)
+
+@property (nonatomic) MWMSpringAnimation * springAnimation;
+
+- (void)cancelSpringAnimation;
+- (void)startAnimatingPlacePage:(MWMPlacePage *)placePage initialVelocity:(CGPoint)velocity;
+- (CGPoint)targetPoint;
+
+@end