我为我的应用整合了应用内购买。我还在itunes& amp;显示状态为Ready to Submit
。
但我想在不提交二进制文件的情况下测试它。
那么,Sandbox In-App测试是否需要另一套?
我的代码:
[[SubclassInAppHelper sharedInstance] requestProductsWithCompletionHandler:^(BOOL success, NSArray *products) {
if (success)
{
[appDel dismissGlobalHUD];
NSMutableArray *arrProductsBuyHeart = [[NSMutableArray alloc]init];
NSMutableArray *arrTemp = [[NSMutableArray alloc]init];
for (SKProduct *Sss in products)
{
NSString *string = Sss.productIdentifier;//@"hello bla bla";
if ([string rangeOfString:@"com.xxxxxxxx.buy"].location == NSNotFound) {
//NSLog(@"string does not contain Buy");
} else {
NSMutableDictionary *dictprod = [NSMutableDictionary dictionary];
[dictprod setObject:Sss.productIdentifier forKey:@"ProductIdentifier"];
[dictprod setObject:Sss.price forKey:@"ProductPrice"];
[dictprod setObject:Sss.localizedTitle forKey:@"ProductTitle"];
[arrTemp addObject:dictprod];
}
}
if (arrTemp.count > 0)
{
NSSortDescriptor *brandDescriptor = [[NSSortDescriptor alloc] initWithKey:@"ProductPrice" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObject:brandDescriptor];
arrProductsBuyHeart = [NSMutableArray arrayWithArray:[arrTemp sortedArrayUsingDescriptors:sortDescriptors]];
//NSLog(@"My products > %@",arrProductsBuyHeart);
for (int i = 0;i<[arrProductsBuyHeart count];i++)
{
NSString *strProductID = [[NSString stringWithFormat:@"%@",[[arrProductsBuyHeart objectAtIndex:i] objectForKey:@"ProductIdentifier"]]RemoveNull];
NSString *strPrice = [[NSString stringWithFormat:@"$%@",[[arrProductsBuyHeart objectAtIndex:i] objectForKey:@"ProductPrice"]]RemoveNull];
if ([strProductID isEqualToString:InApp200Coins])
{
[btn1KHeart setTitle:[NSString stringWithFormat:@"%@",strPrice] forState:UIControlStateNormal];
}
else if ([strProductID isEqualToString:InApp600Coins])
{
[btn2KHeart setTitle:[NSString stringWithFormat:@"%@",strPrice] forState:UIControlStateNormal];
}
else if ([strProductID isEqualToString:InApp900Coins])
{
[btn4KHeart setTitle:[NSString stringWithFormat:@"%@",strPrice] forState:UIControlStateNormal];
}
else if ([strProductID isEqualToString:InApp2KCoins])
{
[btn10KHeart setTitle:[NSString stringWithFormat:@"%@",strPrice] forState:UIControlStateNormal];
}
else if ([strProductID isEqualToString:InApp4KCoins])
{
[btn50KHeart setTitle:[NSString stringWithFormat:@"%@",strPrice] forState:UIControlStateNormal];
}
}
}
else
DisplayAlertWithTitle(@"Error Message", @"Unable to get product list or no in-app purchase found.");
}
else
{
[appDel dismissGlobalHUD];
DisplayAlertWithTitle(@"Error Message", @"Unable to get product list or no in-app purchase found.");
}
}];
}
输出 DisplayAlertWithTitle(@“错误消息”,@“无法获取产品列表或找不到应用内购买。”); &安培; 无法获得产品列表。
帮我解决此问题。
答案 0 :(得分:3)
首先,您可以在itunes connect中创建应用程序。
-add产品在应用内购买。
- 然后在itunes主页后,您可以添加测试用户点击管理用户。
添加后,您可以删除设备中的Apple帐户,然后使用测试用户
登录登录后,您可以在沙盒模式下测试应用内购买。
答案 1 :(得分:0)
在iTunes Connect中创建测试用户帐户,如iTunes Connect Developer Guide中的“创建测试用户帐户”中所述。
在开发iOS设备上,在“设置”中退出App Store。然后从Xcode构建并运行您的应用程序。
在开发OS X设备上,退出Mac App Store。然后在Xcode中构建您的应用程序并从Finder中启动它。
使用您的应用进行应用内购买。当提示您登录App Store时,请使用您的测试帐户。请注意,文本“[Environment:Sandbox]”会显示为提示的一部分,表示您已连接到测试环境。
如果未显示“[Environment:Sandbox]”文本,则表示您正在使用生产环境。确保您正在运行应用程序的开发签名版本。生产签名的构建使用生产环境。
重要提示:请勿使用您的测试用户帐户登录生产环境。如果这样做,测试用户帐户将变为无效,无法再使用。