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
Missing Classes or "NSThread" waiting for class "NSObject"
You linked statically and forgot to tell the linker to --all_load. So your classes were optimized away by the linker.
Warnings about missing functions in your root class
If your root class conforms to the NSObject protocol you may receive some warning about implementations missing. That is because the compiler is not smart enough to figure out, if there is a protocol class providing the necessary implementation or not.