#ifdef DEBUG
SEL sel = NSSelectorFromString(@"_enableRemoteInspector");
id cls = NSClassFromString(@"WebView");
IMP imp = [cls sel];
void (*func)(id, SEL) = (void *)imp;
func(cls, sel);
#endif
add to
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions