Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Standard naming conventions for Objective-C [closed]

Being in the beginning of a project in Objective-C, I'm gathering different kind of information and I would like to find a good naming convention.

Does such resource exist ?

  • Official
  • Unofficial but still widely used
like image 247
Andy M Avatar asked Sep 30 '12 16:09

Andy M


People also ask

Is Objective-C discontinued?

9. Objective-C. Apple's Objective-C is 35 years old, and it's clear that the company wants it dead. Five years ago, Apple executives took to the stage to unveil Swift, its new-and-improved programming language for its software ecosystem.

What does the symbol mean in Objective-C?

That symbol is used to declare block. For more information read here Blocks Programming Topics. Some more info: Block objects are a C-level syntactic and runtime feature.

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

Here is the Cocoa official documentation.

like image 59
Andy M Avatar answered Sep 20 '22 12:09

Andy M


additionally to the standart coding conventions published by Apple, I want to hint to Matt Gemmell's great article about API Design, that also covers naming conventions for protocols used in delegation.

like image 36
vikingosegundo Avatar answered Sep 20 '22 12:09

vikingosegundo