Hi,
if I understand it correctly, the title of the current view controller appears in the navigation bar (
also see here). So I guess this should work:
Code:
NSString *URL = @"www.website.com";
self.title = @"entrynamehere";
NSString *fullURL = [URL stringByAppendingString: [NSString stringWithFormat: @"/%@", self.title]];
NSLog(fullURL);
"self" refers to the view controller you are working with (in your case: the detail view). Good luck!
Cheers,
Bob