Guest User

Untitled

a guest
May 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. - ( id ) methodWithOneParam:( id ) theParam {
  2. // Do amazing stuff
  3. return @"Srsly, Amazing!";
  4. }
  5.  
  6.  
  7. - ( id ) methodWithFirst:( id ) firstParam
  8. andSecond:( id ) secondParam
  9. {
  10. // Do doubly amazing stuff
  11. return @"Even Amazinger";
  12. }
  13.  
  14.  
  15. - ( id ) methodWithFirst:( id ) firstParam
  16. andSecond:( id ) secondParam
  17. andThird:( id ) thirdParam
  18. {
  19. // Do thricely amazing stuff that will certainly rock.
  20. return @"MOAR AMAZINGER-ER!";
  21. }
Add Comment
Please, Sign In to add comment