The default implementation of [view layoutSubviews] actually does something in iOS 6+, so we should call [super layoutSubviews] when overriding it.

main
Alex Szpakowski 2014-07-21 02:46:53 -03:00
parent e234575d54
commit e02e34521a
1 changed files with 2 additions and 0 deletions

View File

@ -212,6 +212,8 @@
- (void)layoutSubviews
{
[super layoutSubviews];
[EAGLContext setCurrentContext:context];
[self updateFrame];
}