EnvConfigure 1.0.6

EnvConfigure 1.0.6

TestsTested
LangLanguage Obj-CObjective C
License BSD
ReleasedLast Release Jul 2018

Maintained by YiJianJun, YiJianJun.



  • By
  • yijianjun

#EnvConfigure

EnvConfigure is a environment configuration.Only use in Debug mode.

simple usage:

in Podfile file

pod 'EnvConfigure', :configurations => ['Debug']

--

###important configure @see ECEnvConfigureHandler

--

in AppDelegate.m file

#if DEBUG
#   import "ECEnvConfigureHandler.h"
#endif

...
	
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    ...

#if DEBUG
	[ECEnvConfigureHandler setupEnvConfig];
#endif

    ...
}