

Nextrek
@ 1058
Nextrek / iOS / SafariArte / trunk / SafariArte / Commodities / GanjaIAPHelper.m
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
// // RageIAPHelper.m // In App Rage // // Created by Ray Wenderlich on 9/5/12. // Copyright (c) 2012 Razeware LLC. All rights reserved. // #import "GanjaIAPHelper.h" @implementation GanjaIAPHelper + (GanjaIAPHelper *)sharedInstance { static dispatch_once_t once; static GanjaIAPHelper * sharedInstance; dispatch_once(&once, ^{ NSSet * productIdentifiers = [NSSet setWithObjects: @"SA_01", @"SA_02", @"SA_03", nil]; sharedInstance = [[self alloc] initWithProductIdentifiers:productIdentifiers]; }); return sharedInstance; } @end |