I have been doing java for almost 3 years now, am just starting to learn Objective-C as of this past June.
Been writing a few programs on my own and writing programs for the exercises in 2 very cool Cocoa/objective-c books.
My question is how do I, coming from Java, create a method in @interface? I want to be able to take my java program of 2 years in the making, and move it to objective-c coding. Below is the method in java
public void calculations(double loan, int termYears, double rate, double taxes, double insurance, double downPayment, double addPmt, double squareFeet, double salary)
Now how do I transform this method?
- (void) calculations: (double) loan : (int) termYears : (double) rate : (double) taxes : (double) insurance : (double) downPayment : (double) addPmt : (double) squareFeet : (double) salary;
Is this correct?