You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've had an error similar to the following pop up a few times because OUIScalingViewController layoutSubViews doesn't call super:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Auto Layout still required after executing -layoutSubviews needs to call super.'
This is an issue when using an OUIScalingView subclass in a xib or storyboard that has autolayout turned on.
- (void)layoutSubviews;
{
if (self.wantsShadowEdges) {
[self updateShadowEdgeViews];
}
}
The text was updated successfully, but these errors were encountered:
I've had an error similar to the following pop up a few times because
OUIScalingViewController
layoutSubViews doesn't call super:This is an issue when using an OUIScalingView subclass in a xib or storyboard that has autolayout turned on.
The text was updated successfully, but these errors were encountered: