views:

30

answers:

1

Hi. Looking at the API section on the left side of the XCode Documentation, I've always wondered what the symbols mean?

For instance, there's a "K" in a green square, a "T" in an orange square, an "M" in a blue square, etc.

Is there a key for these?

Thanks!

Rashiki

+2  A: 
  • C: Class, like NSString
  • M: Method, like -initWithString:
  • #: Define, like nil
  • f: Function, like CFStringAppend()
  • T: Typedef, usually enums like NSStringEncoding
  • K: Constants, usually a member of an enum like NSUTF8StringEncoding
  • G: Global instances, usually strings like NSDirectoryFileType
Darren
Great! Thanks! I think I'm a long way off from knowing what each of these means, but at least the key is there now. ;-) Ha, ha.
Rashiki