[iOS] remove ugly animation on search UI appearance

This commit is contained in:
Aleksey Belouosv 2019-08-27 11:59:43 +03:00 committed by Roman Kuznetsov
parent e47706cc4d
commit 42840b1612
3 changed files with 47 additions and 57 deletions

View file

@ -785,7 +785,6 @@ NSString * const kHotelFacilitiesSegue = @"Map2FacilitiesSegue";
self.visibleAreaKeyboard.constant = kbHeight;
self.placePageAreaKeyboard.constant = kbHeight;
}
[self.view layoutIfNeeded];
}
#pragma mark - Properties

View file

@ -12,8 +12,7 @@
- (instancetype)init __attribute__((unavailable("call +manager instead")));
- (instancetype)copy __attribute__((unavailable("call +manager instead")));
- (instancetype)copyWithZone:(NSZone *)zone __attribute__((unavailable("call +manager instead")));
+ (instancetype)allocWithZone:(struct _NSZone *)zone
__attribute__((unavailable("call +manager instead")));
+ (instancetype) new __attribute__((unavailable("call +manager instead")));
+ (instancetype)allocWithZone:(struct _NSZone *)zone __attribute__((unavailable("call +manager instead")));
+ (instancetype)new __attribute__((unavailable("call +manager instead")));
@end

View file

@ -1,24 +1,20 @@
#import "MWMKeyboard.h"
namespace
{
using Observer = id<MWMKeyboardObserver>;
using Observers = NSHashTable<Observer>;
} // namespace
@interface MWMKeyboard ()
@property(nonatomic) Observers * observers;
@property(nonatomic) NSHashTable *observers;
@property(nonatomic) CGFloat keyboardHeight;
@end
@implementation MWMKeyboard
+ (void)applicationDidBecomeActive { [self manager]; }
+ (MWMKeyboard *)manager
{
static MWMKeyboard * manager;
+ (void)applicationDidBecomeActive {
[self manager];
}
+ (MWMKeyboard *)manager {
static MWMKeyboard *manager;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
manager = [[self alloc] initManager];
@ -26,81 +22,77 @@ using Observers = NSHashTable<Observer>;
return manager;
}
- (instancetype)initManager
{
- (instancetype)initManager {
self = [super init];
if (self)
{
_observers = [Observers weakObjectsHashTable];
NSNotificationCenter * nc = NSNotificationCenter.defaultCenter;
[nc addObserver:self
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];
[nc addObserver:self
selector:@selector(keyboardWillHide:)
name:UIKeyboardWillHideNotification
object:nil];
if (self) {
_observers = [NSHashTable weakObjectsHashTable];
NSNotificationCenter *nc = NSNotificationCenter.defaultCenter;
[nc addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[nc addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
}
return self;
}
- (void)dealloc { [NSNotificationCenter.defaultCenter removeObserver:self]; }
+ (CGFloat)keyboardHeight { return [self manager].keyboardHeight; }
- (void)dealloc {
[NSNotificationCenter.defaultCenter removeObserver:self];
}
+ (CGFloat)keyboardHeight {
return [self manager].keyboardHeight;
}
#pragma mark - Add/Remove Observers
+ (void)addObserver:(id<MWMKeyboardObserver>)observer
{
+ (void)addObserver:(id<MWMKeyboardObserver>)observer {
[[self manager].observers addObject:observer];
}
+ (void)removeObserver:(id<MWMKeyboardObserver>)observer
{
+ (void)removeObserver:(id<MWMKeyboardObserver>)observer {
[[self manager].observers removeObject:observer];
}
#pragma mark - Notifications
- (void)onKeyboardWillAnimate
{
Observers * observers = self.observers.copy;
for (Observer observer in observers)
{
- (void)onKeyboardWillAnimate {
for (id<MWMKeyboardObserver> observer in self.observers) {
if ([observer respondsToSelector:@selector(onKeyboardWillAnimate)])
[observer onKeyboardWillAnimate];
}
}
- (void)onKeyboardAnimation
{
Observers * observers = self.observers.copy;
for (Observer observer in observers)
- (void)onKeyboardAnimation {
for (id<MWMKeyboardObserver> observer in self.observers) {
[observer onKeyboardAnimation];
}
}
- (void)keyboardWillShow:(NSNotification *)notification
{
- (void)keyboardWillShow:(NSNotification *)notification {
[self onKeyboardWillAnimate];
CGSize const keyboardSize =
[notification.userInfo[UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
CGSize keyboardSize = [notification.userInfo[UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
self.keyboardHeight = MIN(keyboardSize.height, keyboardSize.width);
NSNumber * rate = notification.userInfo[UIKeyboardAnimationDurationUserInfoKey];
[UIView animateWithDuration:rate.floatValue
NSNumber *duration = notification.userInfo[UIKeyboardAnimationDurationUserInfoKey];
NSNumber *curve = notification.userInfo[UIKeyboardAnimationCurveUserInfoKey];
[UIView animateWithDuration:duration.doubleValue
delay:0
options:curve.integerValue
animations:^{
[self onKeyboardAnimation];
}];
}
completion:nil];
}
- (void)keyboardWillHide:(NSNotification *)notification
{
- (void)keyboardWillHide:(NSNotification *)notification {
[self onKeyboardWillAnimate];
self.keyboardHeight = 0;
NSNumber * rate = notification.userInfo[UIKeyboardAnimationDurationUserInfoKey];
[UIView animateWithDuration:rate.floatValue
NSNumber *duration = notification.userInfo[UIKeyboardAnimationDurationUserInfoKey];
NSNumber *curve = notification.userInfo[UIKeyboardAnimationCurveUserInfoKey];
[UIView animateWithDuration:duration.doubleValue
delay:0
options:curve.integerValue
animations:^{
[self onKeyboardAnimation];
}];
}
completion:nil];
}
@end