I want to check if my array is empty or null, and on base of which I want to create a condition for example.
if(array == EMPTY){ //do something }
As nil maps to 0, which equals NO, the most elegant way should be
NO
if (![array count])
the '==' operator is not necessary.