In observeValueForKeyPath:ofObject:change:context: - why do the docs use NULL instead of nil when not specifying a context pointer?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Look at the declaration of that method:
Context is a |
|||||||||||||||||
|
|
They're technically the same thing (0), but nil is usually used for an Objective-C object type, while NULL is used for c-style pointers (void *). |
|||
|
They're technically the same thing and differ only in style:
I typically use the variant that matches the language where the type is declared. |
|||
|
|