I'm working with a group of friends on a project, and we're doing it in Objective-C++, which I understand is just Objective-C with the ability to use C++ as well.
I'm curious how I'd go about creating a project like one of my friends has setup. They have a main.mm that runs everything important and starts the program up seemingly, where I'm using to the AppDelegate.m
serving that purpose.
How do I get a project where it's just a .mm file that serves as the focal point, but still has all the Foundation properties like NSDate
and whatnot? I don't want a UI, I just want command line input/output.