Why do constants in all examples I've seen always start with k? And should I #define constants in header or .m file? I'm new to Objective C, and I don't know C. All tutorials and books assume you know C, so I don't understand these things, is there some tutorial somewhere that explains stuff like this? Thanks.
|
|
Starting constants with a "k" is a legacy of the pre-Mac OS X days. In fact, I think the practice might even come from way back in the day, when the Mac OS was written mostly in Pascal, and the predominant development language was Pascal. In C, As for where to |
|||||||||||||||
|
|
The question of what the "k" means is answered in this question. And if you intend for files other than that particular You might be interested in Cocoa Dev Central's C tutorial for Cocoa programmers. It explains a lot of the core concepts. |
|||
|
|
|
k for "konvention". Seriously; it is just convention. You can put a #define wherever you like; in a header, in the .m at the top, in the .m right next to where you use it. Just put it before any code that uses it. The "intro to objective-c" documentation provided with the Xcode tool suite is actually quite good. Read it a few times (I like to re-read it once every 2 to 5 years). However, neither it nor any of the C books that I'm aware of will answer these particular questions. The answers sort of become obvious through experience. |
|||
|
|
|
Current recommendations from Apple for naming constants don't include the 'k' prefix, but many organizations adopted that convention and still use it, so you still see it quite a lot. |
|||
|
|
|
I believe it is because of the former prevalence of Hungarian Notation, so k was chosen because c stood for character. ( http://en.wikipedia.org/wiki/Hungarian_notation ) --Alan |
|||
|
|