Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I am learning Objective-C and iOS development and not sure what proper naming convention should be used. I understand how to use the label aspect of Obj-C methods but not the proper way to name each label. What is the best practice for naming methods, properties, objects, outlets, and actions?

Also,
Should different naming conventions be used between Obj-C code and C code? And if so what differences is there?

share|improve this question
2  
Have you seen Apple's documentation? I am pretty sure they have everything listed out. – BoltClock Jun 20 '12 at 19:33

1 Answer

up vote 5 down vote accepted

Aside from the official Apple guidelines,this guide from Google of all places should help you. For future reference, use the words "idiomatic" and whatever language you need to find stuff.

share|improve this answer
Thank you for the good resources. I did not know Google themselves had such a great resource for programmers. I hadn't looked into the apple docs mainly due to liking examples to reference and what I have seen of apple docs examples are limited. – RMDan Jun 20 '12 at 22:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.