TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Commercial |
ReleasedLast Release | Mar 2015 |
Maintained by Luke Redpath, Josh Priollaud, Matt Krystof.
Depends on: | |
AFNetworking | >= 0 |
AFNetworking/UIKit | >= 0 |
SBJson | >= 0 |
NYXImagesKit | >= 0 |
The easiest way to use this library is using CocoaPods. The accompanying sample app in this repository is configured to use CocoaPods if you want to see an example.
STEP 1: Create a new XCode Project
STEP 2: Create and configure a CocoaPods Podfile (if one exists)
Open Terminal, cd into the project directory, type the following commands:
#!shell
pod init
touch Podfile
Add the following to your Podfile:
#!shell
pod 'Vigure'
STEP 3: Install Vigure CocoaPod
Go to the terminal window, run the following:
#!shell
pod install
STEP 4: Configure the Xcode Workspace
Setup App Delegates and begin to code
To add the Vigure SDK to your project, fist download this repo.
Initiate capture from a view controller
[VigureSDK startCaptureFromViewController:self productId:@"my-product-id" promptText:@"Footer tutorial text of your choosing" completionBlock:^(VigureCaptureResult captureResult) { NSLog(@"Capture Result: %d", captureResult); }];