I have just completed this tutorial... wrote all the code...
http://mobile.tutsplus.com/tutorials/iphone/learn-objective-c-day-4/
(only confusing thing: he doesn't say where this code goes:
(and in his src download it's nowhere to be found, either in SimpleCar.h, or SimpleCar.m..)
then at the end he says: "If you open up the console (Run > Console) and then build and run your app, you should see output similar to this:" etc
"then build and run"??? he doesn't say what the command is to build the app.. what did I miss here??????
I'm just assuming compiling one .m file is not the same as building an entire app, right?
this app consists of various files (SimpleCar.h, SimpleCar.m, & CarApp.m.. what is the command to build this app? (would it be something like
I don't even know how many output files (compiled files) this is supposed to generate..)
thank you very much.....
http://mobile.tutsplus.com/tutorials/iphone/learn-objective-c-day-4/
(only confusing thing: he doesn't say where this code goes:
Code:
-(void) dealloc {
[vin release];
[make release];
[model release];
[super dealloc];
}
(and in his src download it's nowhere to be found, either in SimpleCar.h, or SimpleCar.m..)
then at the end he says: "If you open up the console (Run > Console) and then build and run your app, you should see output similar to this:" etc
"then build and run"??? he doesn't say what the command is to build the app.. what did I miss here??????
I'm just assuming compiling one .m file is not the same as building an entire app, right?
this app consists of various files (SimpleCar.h, SimpleCar.m, & CarApp.m.. what is the command to build this app? (would it be something like
gcc SimpleCar.h SimpleCar.m CarApp.m??)
I don't even know how many output files (compiled files) this is supposed to generate..)
thank you very much.....