Skip to content

Instantly share code, notes, and snippets.

@inoccu
Created April 2, 2014 04:51
Show Gist options
  • Save inoccu/9928127 to your computer and use it in GitHub Desktop.
Save inoccu/9928127 to your computer and use it in GitHub Desktop.
PhoneGap(iOS)でカスタムURLスキームを実装する ref: http://qiita.com/inoccu/items/3eabc960ad6216ffbda3
NSString* jsString = [NSString stringWithFormat:@"window.handleOpenURL(\"%@\");", url];
window.handleOpenURL = (param) ->
window.debug "handleOpenURL #{param}"
[scheme, param] = param.toLowerCase().split("://")
if scheme == "sayhello"
alert "Hello, #{param}!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment