Possible Duplicates:
Objective-C: Class vs Instance Methods?
What do the plus and minus signs mean in Objective C next to a method?
I've tried to look around and couldn't come up with a solid answer that really explained my confusion. I've seen a few times and that is a class having a method that has it's "method type" set to "+" ie:-(Fraction*) fractionWithNumerator: (int) n denominator: (int) d;
now how is that different to +(Fraction*) fractionWithNumerator: (int) n denominator: (int) d;