Tagged Questions
The null-test tag has no wiki summary.
3
votes
5answers
484 views
Is if(obj && obj != nil) correct and necessary?
Two parts to this question
1) Is this understanding of what's going on correct?
"if (obj)" is testing to see if the pointer is not 0x0, aka set to an integer memory address
"if (obj != nil)" is ...
0
votes
2answers
128 views