Hello,
I have a UIWebView that I need to load a page with a specific URL that pulls a number from the users iPhone.
I have the following code
UIDevice *myDevice = [UIDevice currentDevice];
NSString *deviceUDID = [myDevice uniqueIdentifier];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://mysite.com/test.php?uid="]]];
How do I place the "deviceUDID" at the end of "mysite.com/test.php?uid="
Thanks