From 17e981a3c4cd9b41283ebe7e8dcbbce26d282a8a Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Thu, 30 Aug 2018 09:25:54 +0800
Subject: [PATCH] [Update] WAFbImpl (3.7.0)

---
 frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h
index 1a240c8..abd0efa 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h
+++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKUtility.h
@@ -52,4 +52,18 @@
  */
 + (NSString *)URLEncode:(NSString *)value;
 
+/**
+  Creates a timer using Grand Central Dispatch.
+ - Parameter interval: The interval to fire the timer, in seconds.
+ - Parameter block: The code block to execute when timer is fired.
+ - Returns: The dispatch handle.
+ */
++ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block;
+
+/**
+ Stop a timer that was started by startGCDTimerWithInterval.
+ - Parameter timer: The dispatch handle received from startGCDTimerWithInterval.
+ */
++ (void)stopGCDTimer:(dispatch_source_t)timer;
+
 @end

--
Gitblit v1.8.0