I am trying to declare a method that has multiple input and output parameters. I have no problems with multiple input parameters declaration like this:
- (float)tCorrection:(float)t2 tCableBase:(float)t1 CableMaterial: (NSString*)CopperOrAl;
In this case we have 3 input parameters (different types) and one float return type.
My problem is how to declare a function that has more that 1 return parameters. I tried different syntax's and no luck.
Any help is appreciated.
NSDictionaryorNSMutableArray?