Merge remote-tracking branch 'jpush/master' into test

This commit is contained in:
George
2015-09-10 20:13:45 +08:00
2 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ static char launchNotificationKey;
Method origin;
Method swizzle;
origin=class_getClassMethod([self class],@selector(init));
swizzle=class_getClassMethod([self class], @selector(init_plus));
origin=class_getInstanceMethod([self class],@selector(init));
swizzle=class_getInstanceMethod([self class], @selector(init_plus));
method_exchangeImplementations(origin, swizzle);
}