How can I use PHP's $_GET in Objective-C? I would like to use it on an NSString:
http://baileyseymour.com/QR/data-processor.php?name=John%20Smith&email=example@icloud.com
I want to get the value of name and/or email in the uri.
I want to split the NSString of the URL into 2 parts. name=John%20Smith and email=example@icloud.com
How can I accomplish this?