No 'ffense, but it sounds like you're in the "hello world" phase and not ready for a project like this. I'd get a book, do some sample projects first. To your questions:
Quote:
|
I considered using functions for the operators but I'm rather new the iPhone SDK. Can you call functions from the ___viewcontroller.m file?
|
I'd use methods, but yes you can call functions and methods from any .m file.
Code:
Should you just add it before my IBActions function as a int functions? Inside the @implementation thing/block?
Yes, you declare methods in the @interface of your .h file and then write them in the @implementation of your .m file.