• Credit

    US flag
  • Credit

    US flag

iOS SDK Setup

Step 1 : Adding the SDK

The iOS Card SDK is compatible with apps supporting iOS with version 10 and above. To add the ApolloCardFramework to your project, follow these steps:

  1. Set up Cocoapods using simple steps mentioned in this link

  2. Open the Podfile created in your project and add ApolloCardsFramework dependency as mentioned in the code below:

Switch Theme
Expand More
Copy
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
source 'https://bitbucket.org/zetaengg/iapollopubliccocoapodspecs'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'AppTarget' do
 pod 'ApolloCardsFramework'
 pod 'Block-KVO', :git => '[email protected]:Tricertops/Block-KVO.git'
end
post_install do |installer|
   installer.pods_project.targets.each do |target|
       target.build_configurations.each do |config|
           config.build_settings['ENABLE_STRICT_OBJC_MSGSEND'] = 'NO'
           if target.name == "ReactiveCocoa"
           config.build_settings['ENABLE_NS_ASSERTIONS'] = 'NO'
         end
       end
   end
end
Code Copied
3. Set Enable Bitcode to NO under Target > Build Settings.

Step 2 : Setting up the SDK

  • Adding configuration files
    A configuration file contains all the properties necessary for activating the SDK. You should add the file to the main target of your project to prepare your app to work with the SDK. You will receive the configuration file named supercardSdk.plist through email. If you haven’t received the file, contact Zeta.

  • Adding theme & template files
    Card SDK provides you with the capability to define the theme and layout used by the SDK. These can be edited remotely so you won’t have to ship a new app build for changing how your view looks. You can change your theme by contacting Zeta and it will reflect on your app on the next launch.

  • Configure properties
    To enable authentication using face recognition (Face ID), add a value to the NSfaceIdUsageDescription (Privacy - Face ID Usage Description) with a message in the info.plist file.

Step 3. Initialize the SDK

Create the ApolloCardManager instance in your AppDelegate file. Initialize it inside the applicationdidFinishLaunchingWithOptions: method of your Applicationclass. Keep the instance for ApolloCardManager globally accessible.

Switch Theme
Expand More
Copy
1
2
3
4
5
6
7
8
9
#import "AppDelegate.h"  
#import <ApolloCards/ApolloCardManager.h>
@implementation AppDelegate
 
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.cardManager = [[ApolloCardManager alloc] init];
 
    return YES;
}
Code Copied

Step 4. Integrating the SDK

Card SDK is a stateful SDK. Before you start using the Card SDK features, take care of the following :

Authenticating Cards SDK

For a user of your app to be able to use the cards SDK through your app, you need to authenticate the user with the tenantAuthToken. The tenantAuthToken needs to be computed in your backend as it needs sensitive information to create the token. The information used to generate the tenantAuthToken should never be compromised.

Set the tenantAuthToken to the cards SDK once the user logs into your app and you have sufficient information to issue a tenantAuthToken for the user. Following is a code snippet on how to authenticate the SDK:

Switch Theme
Expand More
Copy
1
  [self.cardManager authenticateSDKWithTenantAuthToken:@"JWT_TOKEN"                          andAccountHolderID:@"ACCOUNT_HOLDER_ID"];
Code Copied

Note:

  1. This step has to be performed in a fresh log-in of the user or when the earlier provided tenantAuthToken expires.
  2. A tenantAuthToken has an associated validity with it. The ideal practice is to reset a new token before it expires.

Setting up the SDK

Note: Ensure that this step is performed only after you have authenticated the SDK.

Basic Setup

This step has to be performed on every launch of the app (post the authentication of the SDK). You can perform this after the authentication step (By listening to SDKStatusAuthenticated event) .

Switch Theme
Expand More
Copy
1
2
3
4
5
6
7
8
- (void) setUpSDK {
    [self.cardManager setUpSDKWithResourceID:nil, success:^{
        NSLog(@"SDK initialised successfully");
 
    } failure:^(ApolloCardErrorInfo *userInfo) {
        NSLog(@"SDK initialisation failed with error %@", userInfo.message);
    }];
}
Code Copied

Listen to the listener for success. You can access the Cards SDK APIs

Advanced setup

For storing the card details and authentication information securely, we use encrypted storage and hide the data behind the user’s authentication. If you are an issuer, you can provide a custom implementation of your own encrypted storage. This is how you can achieve it:

Switch Theme
Expand More
Copy
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#import "EncryptedStore.h"
@interface EncryptedStore()<AppSecuredStoreAccess>
@end
@implementation EncryptedStore
- (void)dataForKey:(NSString *)key completion:(void (^)(NSError *, NSData *))completion {
    // code to get data and pass data in completion block
    completion(nil, [NSData data]);
}
- (void)setData:(NSData *)data forKey:(NSString *)key completion:(void (^)(NSError *))completion {
    // code to save data
    if(completion) {
        completion(nil);
    }
}
- (void)resetAllData {
    // code to delete all data
}
@end
Code Copied