Im going over the source code for something i want to implement into my project and noticed some lines in the .m files of the source code and there are some methods that look like this
- (BOOL)isToday { return [self isEqual:today]; }
- (unsigned int)day { return a.day; }
in the h files these methods don't have any arguments but in the .m files they have these curly brace arguments. Im not sure as what there use is. Any one care to help, thanks.
- (BOOL)isToday { return [self isEqual:today]; }
- (unsigned int)day { return a.day; }
in the h files these methods don't have any arguments but in the .m files they have these curly brace arguments. Im not sure as what there use is. Any one care to help, thanks.