SKStoreReviewController.requestReview() 费率不会出现在 Appstore
SKStoreReviewController.requestReview() rates don't come to Appstore
if UsesCount < 10
{
UsesCount += 1
}
else
{
if UsesCount == 10
{
SKStoreReviewController.requestReview()
UsesCount += 1
}
}
UserDefaults.standard.set(UsesCount, forKey: "UsesCount")
UserDefaults.standard.synchronize()
All work right jpg attacked
但在 AppStore 和 AppStore Connect 中,我并未在所有版本中看到此费率。
它可以是什么?
已解决。在 Appstore 中显示区域设置率和评论。我想找到的费率来自俄罗斯,我只能在 AppStore Connect 中通过过滤器“所有费率”或“俄罗斯”看到它。
if UsesCount < 10
{
UsesCount += 1
}
else
{
if UsesCount == 10
{
SKStoreReviewController.requestReview()
UsesCount += 1
}
}
UserDefaults.standard.set(UsesCount, forKey: "UsesCount")
UserDefaults.standard.synchronize()
All work right jpg attacked
但在 AppStore 和 AppStore Connect 中,我并未在所有版本中看到此费率。 它可以是什么?
已解决。在 Appstore 中显示区域设置率和评论。我想找到的费率来自俄罗斯,我只能在 AppStore Connect 中通过过滤器“所有费率”或“俄罗斯”看到它。