Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var url = NSURL(string: requestStringSignature)
  2. var request = NSURLRequest(URL: url!)
  3. NSURLConnection.sendAsynchronousRequest(
  4. request,
  5. queue: NSOperationQueue.mainQueue(),
  6. completionHandler: {
  7. (response, data, error) -> Void in
  8. println(response)
  9. }
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement