3

in function signatures, like:

- (void)dealloc

?

thanks :)

mindthief
  • 12,755
  • 14
  • 57
  • 61

1 Answers1

12

The - denotes an instance method, while the + denotes a class method that doesn't belong to a specific instance.

Marcelo Cantos
  • 181,030
  • 38
  • 327
  • 365