[Reading Notes] iOS network-HTTP-URL percent code, ios-http-url
Code:
-(Void) viewDidLoad {[super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. // URL percent code // URL encoding will encode &, question marks and other punctuation marks. NSString * urlString = @ "http://myhost.com? Query = This is a question "; NSString * encoded = [urlString stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]; NSLog (@" -- urlString -- % @ ", urlString ); NSLog (@ "-- endcoded -- % @", encoded );}
Output:
21:41:58. 501 percent code [730: 74165] -- urlString -- http://myhost.com? Query = This is a question2015-08-18 21:41:58. 501 percent code [730: 74165] -- endcoded -- http://myhost.com? Query = This % 20is % 20a % 20 question
Reference: iOS network advanced programming-enterprise application development for iPhone and iPad