Skip to content

Instantly share code, notes, and snippets.

@veroborges
Created August 1, 2013 22:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veroborges/6135902 to your computer and use it in GitHub Desktop.
Save veroborges/6135902 to your computer and use it in GitHub Desktop.
Yiftee Api Integration in IOS
NSString * url = @"https://yiftee.com/api/v1/gifts/send.html?";
NSString * params = @"api_key=9eb346a265092b53zgh4bcd238708fd63&sender_name=Donna&recipient_name=Aldo&recipient_email=aldo@yiftee.com";
NSURL *urlforWebView = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@", url, params]];
NSURLRequest * urlRequest = [NSURLRequest requestWithURL:urlforWebView];
[webView loadRequest:urlRequest];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment