The application can download the custom resources using this API. The customized resource bundles are assigned to application connections in the SCC.
+ (NSData*) getCustomizationResourcesPropertiesWithCustomizationResource: (NSString*) customizationResource userName: (NSString*) userName passWord: (NSString*) passWord
If successful, this API returns the customization resource bundle as binary data.
        @try {
            l_customResourceData=[LiteSUPAppSettings getCustomizationResourceBundleWithCustomizationResource:oValue userName:supuser passWord:s3puser];
}
        @catch (NSException *exception) {
            NSLog(@"exception name:  %@  reason:  %@",[exception name],[exception reason]);
        }
 
}