I have an NSString that I would like to add extra characters to. In my mind I thought it would be something simple like this:
NSString *answerString = [NSString stringWithFormat:@"%f", finalVolume] + @" Cubic Feet";
But that did not work. Does anyone know what I might be missing here? Thanks!