Workaround for Apple bug where firstOtherButtonIndex is not being set

This commit is contained in:
Matt Coneybeare
2014-09-30 15:16:16 -04:00
parent 0d5e03e72b
commit af5e5af4da
2 changed files with 3 additions and 4 deletions

View File

@@ -1203,7 +1203,7 @@ public class Manager : ArmchairManager {
if (alertView.cancelButtonIndex == buttonIndex || 0 == buttonIndex) {
// they don't want to rate it
dontRate()
} else if (showsRemindButton() && alertView.firstOtherButtonIndex == buttonIndex) {
} else if (showsRemindButton() && 1 == buttonIndex) {
// remind them later
remindMeLater()
} else {