PassSlot is a free service for developers that aims to make Passbook integration easy –
Really easy.

Objective-C framework for iOS 6 and PassKit

If you are developing for iOS, we do have something for you. We've created a SDK that makes Passbook integration a piece of cake. Just add our iOS SDK to your project and you can generate Passbook passes within seconds. You don't need to care about all the details like encryption, API calls or connection handling, our SDK handles this for you.

[PassSlot start:@"<your app key>"];

NSDictionary *values = [NSDictionary dictionaryWithObjectsAndKeys:
							@"John", @"firstName" , 
							@"Doe", @"lastName", 
							@"2012", @"memberSince", nil];

[PassSlot createPassFromTemplateWithName:@"Member Card" withValues:values 
	andRequestInstallation:self completion:^{
	NSLog(@"PassSlot is SO EASY!");
}];

The PassSlot SDK is a state of the art SDK that uses all of the exciting new features that the Objective-C language provides:

  • ARC (Automatic Reference Counting)
  • Fully asynchronous networking
  • Block based callbacks