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
There is no global NSDebugEnabled variable anymore. mulle-objc generally tries to avoid use of global variables. Often you can compile code, by using this hackish code:
#ifdef __MULLE_OBJC__
extern int _ns_rootconfiguration_is_debug_enabled( void);
#define NSDebugEnabled _ns_rootconfiguration_is_debug_enabled()
#endif
This doesn't work for setting NSDebugEnabled=YES. You can't do this in mulle-objc.