This isn't specifically a general programming question but a lot of textmate users I know end up building a textmate command to do something they often do but as it's on it's own never really release it. Mines Below:
Objective-C Build and Run
For when I'm just quickly writing a small Objective-C command line program, place this in a new command; set input to entire document, output as HTML and set the activation as you want it (I use [apple] + [shift] + R).
gcc "$TM_FILEPATH" -o "$TM_DIRECTORY"tmpTextMateRunObjectiveC -l objc
"$TM_DIRECTORY"tmpTextMateRunObjectiveC
rm "$TM_DIRECTORY"tmpTextMateRunObjectiveC
