Lucy Jeong
Lucy Jeong

Reputation: 337

Appirater doesn't work

I'd like to show Appirater when I click some button. here is my setting in appdelegate

Appirater.setAppId("...")
Appirater.setDaysUntilPrompt(0)
Appirater.setUsesUntilPrompt(0)
Appirater.setTimeBeforeReminding(30)
Appirater.setSignificantEventsUntilPrompt(10)
Appirater.userDidSignificantEvent(true))
Appirater.appLaunched(true)

and then I put below code in my view controller

Appirater.tryToShowPrompt()

I don't any idea how to call correct method in action.

Upvotes: 1

Views: 384

Answers (1)

ridvankucuk
ridvankucuk

Reputation: 2407

You will be able to use forceShowPrompt method. However by forcing the prompt consider the side effects. By the way if you want to see the Appirater on the debug mode always, you can use Appirater.setDebug(true) method.

Upvotes: 2

Related Questions