Subversion Repository Public Repository

Nextrek

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

Commits for Nextrek/iOS/SafariArte/trunk/SafariArte/Commodities/GanjaIAPHelper.m

Diff revisions: vs.
Revision Author Commited Message
1058 Diff Diff FAquili picture FAquili Sat 23 Jan, 2016 15:50:57 +0000

Apple release.
1.0

298 FAquili picture FAquili Mon 13 Jul, 2015 14:21:02 +0000

iAP