I'm trying to get an NSString for the user's Application Support folder.
I know I can do NSString *path = @"~/Library/Application Support";
but this doesn't seem very elegant. I've played around with using NSSearchPathForDirectoriesInDomains
but it seems to be quite long-winded and creates several unnecessary objects (at least, my implementation of it does).
Is there a simple way to do this?