Skip to content

Instantly share code, notes, and snippets.

@eliperkins
Last active August 29, 2015 14:19
Show Gist options
  • Save eliperkins/db7d038486dd32ddd9d5 to your computer and use it in GitHub Desktop.
Save eliperkins/db7d038486dd32ddd9d5 to your computer and use it in GitHub Desktop.
Helpshift Setup
- (void)showHelpshift
{
NSDictionary *options = @{
@"enableContactUs" : @"AFTER_VIEWING_FAQS",
@"hideNameAndEmail" : @"YES",
@"goToConversationAfterContactUs" : @"YES",
@"showSearchOnNewConversation" : @"NO",
@"enableFullPrivacy" : @"NO"
};
[[Helpshift sharedInstance] showFAQs:self withOptions:options];
}
@eliperkins
Copy link
Author

@"enableContactUs" : @"AFTER_VIEWING_FAQS" does not seem to work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment