The default implementation of [view layoutSubviews] actually does something in iOS 6+, so we should call [super layoutSubviews] when overriding it.
parent
e234575d54
commit
e02e34521a
|
@ -212,6 +212,8 @@
|
||||||
|
|
||||||
- (void)layoutSubviews
|
- (void)layoutSubviews
|
||||||
{
|
{
|
||||||
|
[super layoutSubviews];
|
||||||
|
|
||||||
[EAGLContext setCurrentContext:context];
|
[EAGLContext setCurrentContext:context];
|
||||||
[self updateFrame];
|
[self updateFrame];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue