I’m trying to use this string inside this NSURL however I don’t think its right and in turn giving me an ASI HTTP request failed error.
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://furious-ice-356.heroku.com/places/%@/reviews.xml",self.identifier]];
self.identifierreturns (in most cases) an object of the typeid. You cannot cast this object to aNSString*.The only exception is the in 10.7 newly introduced
identifierproperty ofNSString*in theNSUserInterfaceItemIdentificationprotocol.Can you elaborate your question so we can see what type
selfhas?