CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by PassSlot.
The PassSlot SDK now contains a demo application which can generate passes. You can find the sample in the samples/PassSlot Demo directory.
The PassSlot SDK requires the PassSlot cloud service for signing passes. You can sign up for a free developer account at PassSlot.com.
You can install the PassSlot SDK either by using CocoaPods or add it yourself.
Drag the PassSlot.framework folder into your project and add it to your target
Link your binary with the following libraries:
Add -ObjC
to your Other Linker Flags
Import the PassSlot headers where you need it.
#import <PassSlot/PassSlot.h>
NOTE: If you do not want to import PassSlot.h in every file you may add it into you pre-compiled header (<projectname>_Prefix.pch
) file inside of the #ifdef __OBJC__
section
-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// ...
[PassSlot start:@"<your app key>"];
// ...
}
This SDK is uses MKNetworkKit