tags:

views:

26

answers:

1

How do you declare an Objective-C static method that can be called without a class instance?

+2  A: 

Put a + instead of the usual - in front of your method definition.

sblom