I have the following function:
-(void) CalLevels: (NSMutableArray *)rPrices: (NSMutableDictionary *) rLevels: (float) nClose: (float) nHigh: (float) nLow: (float) nOpen {...}
I am calling the above function as follows:
[self CalLevels:rm.rPrices rLevels:rm.rLevels nClose:nCloseD nHigh:nHighD nLow:nLowD nOpen:nOpenD];
I get the warning method not found. Thanks for any help.
You should call it like that:
or change the method declaration, since
rLeveland its friends are the internal method name of the variables, not part of the method name.The correct way is either the one above, or change the method signature: