I made some method in pseudo code, and I want to create objective C method. Could you help me define it? I am not very familiar with objective C, so I am confused. Also, I want to use strings as parameters for the method, but not NSString objects.
this is the method definition. I am not sure if it fits objective C definitions and also I am unsure about the type "string".
-(BOOL) testMethod(string largestring, string smallstring) { return true; } And do I have to include some library so I can use string type? Thanks.
