Return values

suggest change

When you want to return a value from a method, you put the type you want to return in the first set of parentheses.

- (NSString)returnHello {
  return @"Hello World";
}

The value you want to return goes after the return keyword;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Methods:
*Return values

Table Of Contents