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
{{ message }}
This repository has been archived by the owner on May 28, 2024. It is now read-only.
With the pre-release of xcode I get following error:
The receiver of message 'size' is nil and returns a value of type 'CGSize' that will be garbage
I expect that it's related to the same thing
I ended up wrapping the whole switch statement with
if (image && (image.size.width>0.0f && image.size.height>0.0f)) {
//switch
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
with such a console error:
Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer bounds contains NaN: [0 0; 4.07206e-10 nan]'
it's getting SIGABRT in line 418 in ATMHudView.m :
imageLayer.bounds = CGRectMake(0, 0, imageRect.size.width, imageRect.size.height);
The text was updated successfully, but these errors were encountered: