How can I concatenate an NSString
URL? For example:
http://isomewebsite.com/username=[someuservariable]&password=[somevariable]
How can I concatenate an NSString
URL? For example:
http://isomewebsite.com/username=[someuservariable]&password=[somevariable]
Try with below code.
NSString* myURLString = [NSString stringWithFormat:@"somewebsite.com/username=%@&password=%@", myUserName,myPassword];
NSURL *url = [NSURL URLWithString:myURLString];
Here is the blog tutorial will help you know more about Handling url authentication challenges accessing password protected servers
You can use the method stringWithFormat of NSString:
NSString *url = [NSString stringWithFormat:@"somewebsite.com/username=%@&password=%@", someuservariable, some variable];
Try this excellent post - URL encoding an NSString on iOS