views:

252

answers:

2

Is there any pdf which tells about coding guidelines in objective C.

For Example...

 1. Breaking the function names - checkIfHitTheTrack. 
 2. member variables must be like - mVariableName.
 3. Giving better names to subclass - ?

Please share the related links...

+5  A: 

I would start with these:

  1. Apple's Coding Guidelines for Cocoa
  2. Google's Objective-C Style Guide
rcw3
+3  A: 

Take a look at Objective-C Beginner's Guide.

Jojo Sardez