Open Lyankar opened 5 years ago
Hi There,
Hope you are doing great!
First of all we highly apologies for the delay in response.
We didn't exactly understand the issue you are facing. It would be great if you could help us understand the issue in a little more depth?
In future, please feel free to write back via our support channel for a faster and dedicated response in case of any further confusion/issues.
-Parth
I implemented trucaller sdk based on your guidelines. When I tap trucaller button it's opened trucaller app and it's getting my profile details, because I already logged in that app. But I need some one mobile number details. How to read ?
My code is ....
In AppDelegate:
import TrueSDK
in didFinishLaunchingWithOptions launchOptions
//Setup TruecallerSDK if TCTrueSDK.sharedManager().isSupported() { TCTrueSDK.sharedManager().setup(withAppKey: "CY16U82*****0e5c", appLink: "https://sif2bea1******dfb8.truecallerdevs.com") }
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Swift.Void) -> Bool { return TCTrueSDK.sharedManager().application(application, continue: userActivity, restorationHandler: restorationHandler) }
In my ViewController:
import TrueSDK
class ViewController: UIViewController , TCTrueSDKDelegate {
@IBOutlet weak var btn: TCProfileRequestButton!
}