From 1ac0909c7fc8492c120953dbf510394cd0184cac Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Wed, 27 May 2020 09:47:56 +0800 Subject: [PATCH] 3.8.4 --- frameworks/WASdkIntf.framework/Headers/WACoreProxy.h | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h b/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h index 509d3c2..3e0330d 100644 --- a/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h +++ b/frameworks/WASdkIntf.framework/Headers/WACoreProxy.h @@ -180,7 +180,7 @@ /*! @abstract 隐私政策内容界面 */ -+(void)showPrivacyUI:(void(^)())privacyUIClosedHandler; ++(void)showPrivacyUI:(void(^)(void))privacyUIClosedHandler; /*! @abstract 下面两个方法是关于Facebook deeplink, CP不用关注 */ @@ -211,12 +211,12 @@ /*! @abstract 注册通知 */ -+ (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate; ++ (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate API_AVAILABLE(ios(10.0)); /*! @abstract 调用过用户注册通知方法之后执行 */ -+ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings; ++ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings API_AVAILABLE(ios(8.0)); /*! @abstract 获取deviceToken @@ -243,12 +243,12 @@ /*! @abstractApp 处于前台接收通知时 */ -+ (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler; ++ (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)); /*! @abstract 通知的点击事件 */ -+ (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)())completionHandler; ++ (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)); /*! 程序进入后台 @@ -278,11 +278,13 @@ + (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options; -+ (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler; ++ (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler API_AVAILABLE(ios(8.0)); /*! @abstract 设备是否越狱 */ + (BOOL)isJailBreak; + + @end -- Gitblit v1.8.0