forked from organicmaps/organicmaps
[ios] Correctly unsubscribe from notifications
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
230b063b80
commit
27730a1469
5 changed files with 8 additions and 7 deletions
|
@ -21,7 +21,7 @@
|
|||
}
|
||||
|
||||
- (void)dealloc {
|
||||
[NSNotificationCenter.defaultCenter removeObserver:self name:UITextViewTextDidChangeNotification object:nil];
|
||||
[NSNotificationCenter.defaultCenter removeObserver:self];
|
||||
}
|
||||
|
||||
- (UILabel *)placeholderView {
|
||||
|
|
|
@ -465,12 +465,7 @@ void setShowLocationAlert(BOOL needShow) {
|
|||
} else {
|
||||
_started = NO;
|
||||
[self stop];
|
||||
[notificationCenter removeObserver:self
|
||||
name:UIDeviceOrientationDidChangeNotification
|
||||
object:nil];
|
||||
[notificationCenter removeObserver:self
|
||||
name:UIDeviceBatteryStateDidChangeNotification
|
||||
object:nil];
|
||||
[notificationCenter removeObserver:self];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,5 +3,6 @@
|
|||
@interface MWMSearchManager (Layout)
|
||||
|
||||
- (void)layoutTopViews;
|
||||
- (void)removeKeyboardObservers;
|
||||
|
||||
@end
|
||||
|
|
|
@ -85,6 +85,10 @@ static CGFloat const changeModeViewOffsetKeyboard = -12;
|
|||
object:nil];
|
||||
}
|
||||
|
||||
- (void)removeKeyboardObservers {
|
||||
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
||||
}
|
||||
|
||||
#pragma mark - keyboard movements
|
||||
- (void)keyboardWillShow:(NSNotification *)notification {
|
||||
CGSize keyboardSize = [[[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;
|
||||
|
|
|
@ -485,6 +485,7 @@ using Observers = NSHashTable<Observer>;
|
|||
[contentView removeFromSuperview];
|
||||
[actionBarView removeFromSuperview];
|
||||
[searchBarView removeFromSuperview];
|
||||
[self removeKeyboardObservers];
|
||||
}];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue