From 8fa34ea030b6cce83b63130278711402b6664017 Mon Sep 17 00:00:00 2001 From: Arthur Ariel Sabintsev Date: Fri, 7 Jul 2017 10:22:21 -0400 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 477907f..ccd7f14 100644 --- a/README.md +++ b/README.md @@ -68,11 +68,11 @@ Copy the 'Harpy' folder into your Xcode project. It contains the Harpy.h and Har [[Harpy sharedInstance] setPresentingViewController:_window.rootViewController]; // (Optional) Set the Delegate to track what a user clicked on, or to use a custom UI to present your message. - [[Harpy sharedInstance] setDelegate:self]; + [[Harpy sharedInstance] setDelegate:self]; // (Optional) When this is set, the alert will only show up if the current version has already been released for X days. // By default, this value is set to 1 (day) to avoid an issue where Apple updates the JSON faster than the app binary propogates to the App Store. - [[Harpy sharedInstance] setShowAlertAfterCurrentVersionHasBeenReleasedForDays:3]; + [[Harpy sharedInstance] setShowAlertAfterCurrentVersionHasBeenReleasedForDays:3]; // (Optional) The tintColor for the alertController [[Harpy sharedInstance] setAlertControllerTintColor:@"<#alert_controller_tint_color#>"]; @@ -94,7 +94,7 @@ Copy the 'Harpy' folder into your Xcode project. It contains the Harpy.h and Har /* (Optional): Delays the update prompt by a specific number of days. By default, this value is set to 1 day to avoid an issue where Apple updates the JSON faster than the app binary propogates to the App Store.*/ - [[Harpy sharedInstance] setShowAlertAfterCurrentVersionHasBeenReleasedForDays:<#Int#>]; + [[Harpy sharedInstance] setShowAlertAfterCurrentVersionHasBeenReleasedForDays:<#Int#>]; // Perform check for new version of your app [[Harpy sharedInstance] checkVersion];