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-23 17:21:11 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:49 +0300
commit018fdf190f656fbdc474f3feec6108711dc03768 (patch)
tree17111900ee6508db7d279dddf8fd83d6a1142288 /iphone/Maps/Classes/MWMPlacePage.mm
parent078ea88c16fad66817c9b2dde6ff207be6690794 (diff)
[ios] Fixed bug with place page title after editing.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePage.mm')
-rw-r--r--iphone/Maps/Classes/MWMPlacePage.mm5
1 files changed, 3 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePage.mm b/iphone/Maps/Classes/MWMPlacePage.mm
index 86401a0f0f..988777bf29 100644
--- a/iphone/Maps/Classes/MWMPlacePage.mm
+++ b/iphone/Maps/Classes/MWMPlacePage.mm
@@ -146,9 +146,10 @@ extern NSString * const kAlohalyticsTapEventKey;
// This method should be empty if your target is iPad.
}
-- (void)willFinishEditingBookmarkTitle:(CGFloat)keyboardHeight
+- (void)willFinishEditingBookmarkTitle:(NSString *)title
{
-// This method should be empty if your target is iPad.
+ self.basePlacePageView.titleLabel.text = title;
+ [self.basePlacePageView layoutSubviews];
}
- (IBAction)didTap:(UITapGestureRecognizer *)sender