Heres my function which xcode likes.
Heres the calls I've tried to that function
I've tried similar variations but xcode doesn't like it.
I get this error.
error: request for member 'getLength' in something not a structure or union
Help!
TIA
Code:
- (float) getLength:(NSString *)str
{
float ret = 0.0;
return ret;
}
Heres the calls I've tried to that function
Code:
lbl.text = self.getLength:@"1";
lbl.text = [NSString stringWithFormat:@"%i. ", self.getLength:@"1"];
I've tried similar variations but xcode doesn't like it.
I get this error.
error: request for member 'getLength' in something not a structure or union
Help!
TIA