[Chat] fix keyboard disappearance

Xamarin.iOS 8.10.0.267
This commit is contained in:
Rustam Zaitov 2015-05-04 23:42:31 +03:00
Родитель d2822e7acb
Коммит b12d3fd094
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -225,7 +225,9 @@ namespace Chat
{
UIViewAnimationCurve curve = e.AnimationCurve;
UIView.Animate (e.AnimationDuration, 0, ConvertToAnimationOptions (e.AnimationCurve), () => {
SetToolbarContstraint(e.FrameEnd.Height);
nfloat offsetFromBottom = tableView.Frame.GetMaxY() - e.FrameEnd.GetMinY();
offsetFromBottom = NMath.Max(0, offsetFromBottom);
SetToolbarContstraint(offsetFromBottom);
}, null);
}