I think this is a very simple thing to do, but since I\'m new to iOS development and objective C, I can\'t figure it out.
#define RESTFUL_PATH_PREFIX @\"https://
It is much better practice to use constants instead of define macros.
static NSString *const YourPath = @"https://...";
And then you can concatenate your strings with NSString stringWithFormat: method.
NSString stringWithFormat: