[ios] Correctly unsubscribe from notifications

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-02-20 23:52:37 +01:00 committed by Alexander Borsuk
parent 230b063b80
commit 27730a1469
5 changed files with 8 additions and 7 deletions

View file

@ -21,7 +21,7 @@
}
- (void)dealloc {
[NSNotificationCenter.defaultCenter removeObserver:self name:UITextViewTextDidChangeNotification object:nil];
[NSNotificationCenter.defaultCenter removeObserver:self];
}
- (UILabel *)placeholderView {

View file

@ -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];
}
}

View file

@ -3,5 +3,6 @@
@interface MWMSearchManager (Layout)
- (void)layoutTopViews;
- (void)removeKeyboardObservers;
@end

View file

@ -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;

View file

@ -485,6 +485,7 @@ using Observers = NSHashTable<Observer>;
[contentView removeFromSuperview];
[actionBarView removeFromSuperview];
[searchBarView removeFromSuperview];
[self removeKeyboardObservers];
}];
}