I'm trying to get a UIWebView working with the following code:
NSString *urlAddress = [NSString stringWithFormat: @"http://www.wikipedia.org/wiki/%@",recipe.name];
recipe.name is the entity and property from the core data model
I used NSLog to test the 'recipe.name' and it is outputting correctly to the console
I tried this witho just a plain URL and it works fine: NSString *urlAddress = [NSString stringWithFormat: @"http://www.wikipedia.org/wiki/soup"];
thanks for any help.