I need to define a string that will include a string that changes (i can already make that string change) and additional text.
for example,
NSString *commentsAddress = *somestring*/#comments;
now i know it sould be something more along the lines of
NSString *commentsAddress = @"%@/#comments", *somestring*;
but I can't get this to work.