Method with multiple input parameters

94,372

Solution 1

No. A method must have the format as you described:

- (void)first:(NSString *)fname second:(NSString *)mname third:(NSString *)lname;

Solution 2

You have to have the parameters interleaved with the method signature. It's ok because xcode has code completion and it can give you nice descriptive names about what your method is doing and what it requires.

e.g.

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration

In the example above without even looking at the API for UIViewController you can get a pretty good understanding of how this method works and what it's params are. It is good practice to name your methods well to describe what they do (it can remove the need for most commenting if done well).

You may well of course see a method written like this

- (void)myMethodThatAcceptsARectangle:(float)x :(float)y :(float)w :(float)h;

But this will not be very clear in use as to what the parameters relate to:

[self myMethodThatAcceptsARectangle:1.0f :1.0f :1.0f :1.0f];

So you should avoid this (I added it incase you ever see this and wonder what's happening).

Solution 3

fullName:(NSString, NSString, NSString) fname, mname, lname;

Yes, you can do something like that. It'd look like this instead:

-(void)fullName:(NSString*)fname :(NSString*)mname :(NSString*)lname

and you'd call it like this:

[foo fullName:first :middle :last];

That largely defeats the point of Objective-C's method names, though, and the main reason to do something like that is to register your dislike of the normal Objective-C convention, or perhaps to get yourself kicked off whatever project you're working on.

Solution 4

Another option could be variadic parameters. They're used to provide a variable amount of parameters, even though you wouldn't have a name on each one of them. e.g.

[NSString stringWithFormat:@"My name is %@ %@", @"John", @"Doe"];

It would be something like this:

- (void)names:(NSString *)names, ...;

Implementation, additional info

Solution 5

Here's a simple example for Method with parameters.

- (void)methodName:(NSString *)parameterOne methodNameContinues:(NSString *)parameterTwo;

For Example,

-(void)showAlertMsg:(NSString *)message withTitle:(NSString *)title;

Here you can see, we've a prefix "withTitle" for the second parameter. We've to proceed the same for the other parameters too.

Share:
94,372
C.Johns
Author by

C.Johns

Updated on June 15, 2020

Comments

  • C.Johns
    C.Johns almost 4 years

    I understand how to create my own methods that accept input parameters in objective-c but I have never actually created a method with more than one input parameter!

    From methods I have used with multiple input parameters each has a name along the lines of

    first:second:third:

    and look like

    - (void)first:(NSString *)fname second:(NSString *)mname third:(NSString *)lname;

    my question is when creating your own method with multiple input parameters do you have to create a name like first:second:third or can you just have something like C++ where you have the one name followed by a list of input parameter types followed by the parameter names... if I remember correctly.

    fullName:(NSString, NSString, NSString) fname, mname, lname;
    
  • Richard
    Richard over 10 years
    -1 Does not address OP's question on Objective-C language syntax.
  • ericn
    ericn about 10 years
    Incorrect, one does not have to do this, please see below answers! @PengOne
  • PengOne
    PengOne about 10 years
    @fuzzybee Actually, this is completely correct. You may have an empty string for a name, e.g. "" instead of "second", but the colons are necessary after each name.
  • ericn
    ericn about 10 years
    Ok, understood now. However, one may get confused without you making yourself clearer. It's probably the reason why your answer were not accepted, just my 2 cents
  • Supertecnoboff
    Supertecnoboff about 10 years
    Thank you, very helpful @PengOne :)
  • Xcodian Solangi
    Xcodian Solangi about 6 years
    how can I call that method in view did load? and assign values