From java method to an objective-c method
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?
musikluver4
Junior Poster in Training
81 posts since Mar 2010
Reputation Points: 10
Solved Threads: 0
how come you didn't use the - (void)? you just did (void)? It says something in the book about that and I read that + is used too...
musikluver4
Junior Poster in Training
81 posts since Mar 2010
Reputation Points: 10
Solved Threads: 0