Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

objective c coding guidelines

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...

like image 781
Chandan Shetty SP Avatar asked Mar 30 '10 05:03

Chandan Shetty SP


People also ask

Is Objective-C outdated?

Programming in Objective-C will not become obsolete any time soon because, thanks to its 20 years of existence, it has a large code base, a number of apps maintained, and third-party framework with Objective-C at its core. These solutions and libraries are unlikely to be rebuilt from scratch with a new language.

Is Objective-C deprecated?

It won't be deprecated, but it'll move to Florida to enjoy its golden years. It'll spend days running the legacy app with a million lines of code, and its nights sipping margaritas with the OAuth library everyone fears rewriting.


2 Answers

I would start with these:

  1. Apple's Coding Guidelines for Cocoa
  2. Google's Objective-C Style Guide
like image 103
rcw3 Avatar answered Oct 19 '22 15:10

rcw3


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

like image 21
Jojo Sardez Avatar answered Oct 19 '22 15:10

Jojo Sardez