1. First you need to add your license file to your Xcode project as a resource:
2. Once the license file has been added to your project, you can set your license/developer key via code:
Swift:
let licensePath = NSBundle.mainBundle().pathForResource(“LEADTOOLS” ofType: “LIC”)
let developerKey = “Copy contents of developer key here”
do {
try LTRasterSupport.setLicenseFile(licensePath, developerKey: developerKey)
}
catch let error as NSError {
print(error.localizedDescription)
}
Objective-C:
NSString *licensePath = [[NSBundle mainBundle] pathForResource:@”LEADTOOLS” ofType:@”LIC”];
NSString *developerKey = @“Copy contents of developer key here”;
NSError *error = nil;
if (![LTRasterSupport setLicenseFile:licensePath developerKey:developerKey error:&error]) {
NSLog(@”%@”, error.localizedDescription);
}
3. Since App Bundles are easy to extract and get the contents of, DO NOT INCLUDE YOUR DEVELOPER KEY FILE in the app bundle. If you do this, users of your App may be able to steal your license/key and use it to develop Applications using your information.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document