|
@@ -21,9 +21,8 @@
|
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
#endif
|
|
|
|
|
|
-#import "UrlDecode.h"
|
|
|
+
|
|
|
#import "KSTouchCapturingWindow.h"
|
|
|
-#import "KSBaseWKWebViewController.h"
|
|
|
#import "UserInfoManager.h"
|
|
|
|
|
|
#import "KSBaseWKWebViewController.h"
|
|
@@ -594,7 +593,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
|
NSString *webUrl = [dict ks_stringValueForKey:@"url"];
|
|
|
if (![NSString isEmptyString:webUrl]) {
|
|
|
KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
|
|
|
- webCtrl.url = webUrl;
|
|
|
+ webCtrl.url = [webUrl getUrlEndcodeString];
|
|
|
CustomNavViewController *navCtrl = self.tabBarController.selectedViewController;
|
|
|
[navCtrl pushViewController:webCtrl animated:YES];
|
|
|
}
|
|
@@ -716,7 +715,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
|
if ([detailUrl containsString:@"linkUrl="]) {
|
|
|
NSString *linkUrl = [[detailUrl componentsSeparatedByString:@"linkUrl="] lastObject];
|
|
|
if (![NSString isEmptyString:linkUrl]) {
|
|
|
- linkUrl = [UrlDecode decodeStringWithString:linkUrl];
|
|
|
+ linkUrl = [linkUrl removeUrlEndcodeString];
|
|
|
// 转成 dic
|
|
|
NSData *jsonData = [linkUrl mj_JSONData];
|
|
|
NSError *error;
|
|
@@ -754,7 +753,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
|
NSString *webUrl = [dict ks_stringValueForKey:@"url"];
|
|
|
if (![NSString isEmptyString:webUrl]) {
|
|
|
KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
|
|
|
- webCtrl.url = webUrl;
|
|
|
+ webCtrl.url = [webUrl getUrlEndcodeString];
|
|
|
|
|
|
UIViewController *vc = self.window.rootViewController;
|
|
|
if ([vc isKindOfClass:[KSTabBarViewController class]]) {
|
|
@@ -911,7 +910,7 @@ didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
|
NSString *webUrl = [dict ks_stringValueForKey:@"url"];
|
|
|
if (![NSString isEmptyString:webUrl]) {
|
|
|
KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
|
|
|
- webCtrl.url = webUrl;
|
|
|
+ webCtrl.url = [webUrl getUrlEndcodeString];
|
|
|
CustomNavViewController *navCtrl = self.tabBarController.selectedViewController;
|
|
|
[navCtrl pushViewController:webCtrl animated:YES];
|
|
|
}
|