### Initialize and Create Pass with iOS SDK Source: https://www.passslot.com/documentation Initializes the PassSlot service with an app key and creates a pass from a template using an Objective-C dictionary for values. ```Objective-C [PassSlot start:@""]; 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!"); }]; ``` -------------------------------- ### Rate Limit Notification Source: https://www.passslot.com/documentation Indicates that the API request limit has been exceeded. ```text Rate limit exceeded ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.