アプリの購入で製品 ID を追加しようとしています。ただし、次のコードでは手動で追加しています。から追加するにはどうすればよいplist
ですか?
私のコード:
@implementation RageIAPHelper
+ (RageIAPHelper *)sharedInstance {
static dispatch_once_t once;
static RageIAPHelper * sharedInstance;
dispatch_once(&once, ^{
NSSet * productIdentifiers = [NSSet setWithObjects:
@"greatminds.assamkarttestingdays",
@"greatminds.newgirlinthecity",
@"greatminds.newlights",
nil];
sharedInstance = [[self alloc] initWithProductIdentifiers:productIdentifiers];
});
return sharedInstance;
}