Calling self in objective c method headers
- by hakewake
Lets say I made a method that can tabulate the total of x and y.
total = [self totalThemUp x:30 y:50];
Is self correctly used? Why so? I don't see any object in particular that is acted on.
Thanks for your help!