Hi guys,
I have an NSURL which contains a URL and a variable that is an NSDate:
NSURL *url = [[[NSURL alloc] initWithString:[NSString stringWithFormat:@"http://www.googlebio.com/xml_test.aspx?date=%@",self.storeDate]] autorelease];
I also tried it this way but to no avail:
NSString*string = [NSString stringWithFormat:@"http://www.googlebio.com/xml_test.aspx?date=%@",self.storeDate];
NSURL*url=[NSURL URLWithString:string];
[url autorelease];
The application does not crash but when I debug it, url is nil.
Any ideas as to why this is?
Thanks.
Stefan.