Skip to content

Instantly share code, notes, and snippets.

@lperrin
Created July 9, 2014 17:25
Show Gist options
  • Save lperrin/82e96491eb409ac654e1 to your computer and use it in GitHub Desktop.
Save lperrin/82e96491eb409ac654e1 to your computer and use it in GitHub Desktop.
- (void)runJavaScript:(NSString *)command {
NSLog(@"js: %@", command);
[self.web stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"if (typeof jsapi !== 'undefined') %@;", command]];
}
- (void)toggleArchived {
[self runJavaScript:@"jsapi.toggleArchiveConversation()"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment