I fixed this on my side .. If anyone experieced it this is what i added in LMAlertView.m
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
- (void)keyboardWillHide:(NSNotification *)notification
{
self.representationView.layer.anchorPoint = CGPointMake(0.5, 0.5);
self.representationView.center = CGPointMake([[UIScreen mainScreen] bounds].size.width / 2.0, ([[UIScreen mainScreen] bounds].size.height) / 2.0);
}