[ios] Fixed alerts layout.

This commit is contained in:
Ilya Grechuhin 2016-09-02 17:09:00 +03:00
parent ea495895ff
commit e544b58e70

View file

@ -279,4 +279,10 @@ CGAffineTransform rotation(UIInterfaceOrientation orientation)
self.frame = view.bounds;
}
- (void)layoutSubviews
{
[super layoutSubviews];
self.frame = self.superview.bounds;
}
@end