diff --git a/Classes/BITAuthenticator.h b/Classes/BITAuthenticator.h index 63acea9e72..577d681b5f 100644 --- a/Classes/BITAuthenticator.h +++ b/Classes/BITAuthenticator.h @@ -143,29 +143,29 @@ typedef void(^tValidationCompletion)(BOOL validated, NSError *error); @property (nonatomic, strong) NSURL *webpageURL; /** - * Should be used by the app-delegate to forward handle application:openURL:sourceApplication:annotation: calls - * - * Sample usage (in AppDelegate): - * - * - (BOOL)application:(UIApplication *)application - * openURL:(NSURL *)url - * sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { - * if ([[BITHockeyManager sharedHockeyManager].authenticator handleOpenURL:url - * sourceApplication:sourceApplication - * annotation:annotation]) { - * return YES; - * } else { - * //do your own URL handling, return appropriate valu - * } - * return NO; - * } - * - * @param url The URL that was passed to the app - * @param sourceApplication sourceApplication that was passed to the app - * @param annotation annotation that was passed to the app - * - * @return YES if the URL request was handled, NO if the URL could not be handled/identified - * + Should be used by the app-delegate to forward handle application:openURL:sourceApplication:annotation: calls + + Sample usage (in AppDelegate): + + - (BOOL)application:(UIApplication *)application + openURL:(NSURL *)url + sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { + if ([[BITHockeyManager sharedHockeyManager].authenticator handleOpenURL:url + sourceApplication:sourceApplication + annotation:annotation]) { + return YES; + } else { + //do your own URL handling, return appropriate valu + } + return NO; + } + + @param url The URL that was passed to the app + @param sourceApplication sourceApplication that was passed to the app + @param annotation annotation that was passed to the app + + @return YES if the URL request was handled, NO if the URL could not be handled/identified + */ - (BOOL) handleOpenURL:(NSURL *) url sourceApplication:(NSString *) sourceApplication