Objective-C
1. Import the TruecallerSDK framework in the class where you want to initialize it (for example AppDelegate) and in the class that you want to receive the profile response. Usually, this will be the ViewController responsible for displaying the True Profile info.
#import <TrueSDK/TrueSDK.h>2. Check if the current device supports the use of TruecallerSDK and (if so) setup TruecallerSDK. We recommend this to be done in the application:didFinishLaunchingWithOptions:
if ([[TCTrueSDK sharedManager] isSupported]) {
[[TCTrueSDK sharedManager] setupWithAppKey:<#YOUR_APP_KEY#> appLink:<#YOUR_APP_LINK#>];
}Use the entire associated domain link provided by Truecaller for YOUR_APP_LINK. For example: https://si44524554ef8e45b5aa83ced4e96d5xxx.truecallerdevs.com (including https://).
3. In AppDelegate implement the method application:continueUserActivity:restorationHandler: and call the corresponding method of the [TCTrueSDK sharedManager]. If the method returns false that means the activity need not be addressed by TruecallerSDK and you can handle it as desired.
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray *restorableObjects))restorationHandler {
return [[TCTrueSDK sharedManager] application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
}4. Set the class where you want to receive TruecallerSDK events (the profile or errors) a TCTrueSDKDelegate
#import <UIKit/UIKit.h>
#import <TrueSDK/TrueSDK.h>
@interface ViewController : UIViewController <TCTrueSDKDelegate>
@end5. Implement the two TCTrueSDKDelegate methods
The profile object is of type TCTrueProfile (written in Objective C) which offers the following user data:
6. Set the delegate property of the [TCTrueSDK sharedManager]. Make sure you do this before you request the True Profile.
7. Requesting the True Profile data can be done automatically or manually (either in code or in the Interface Builder):
a. The TCProfileRequestButton does the True Profile Request automatically. To use the predefined buttons you need to set the Button Type to Custom and set auto-layout constraints for the button. You can then choose the True button style and corners style of the button in code or in Interface Builder using TCProfileRequestButton property buttonStyle and buttonCornersStyle:

b. If you prefer to do it yourself, you can use the method requestTrueProfile.
Last updated