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 Sep 23, 2024. It is now read-only.
tens of warnings because you are creating most, if not all your strings with
NSString*mystring = [NSString stringWithString:@"hello"];
did nobody tell you that you can simply write
NSString*mystring @"hello";
??
hard to take your project seriously after that, XCode even proposes to fix the warnings for you if you cared to click !
The text was updated successfully, but these errors were encountered: