Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
}

i hope i'm clear what i am asking, just need to check if my array is empty?

regards

share|improve this question

8 Answers

up vote 29 down vote accepted
if (!array || !array.count){
  ...
}

That checks if array is not nil, and if not - check if it is not empty.

share|improve this answer
2  
It works but it's not completely flawless: array.count should be [array count] since you're not dealing with a property (var) here. – Rengers Oct 18 '10 at 17:15
2  
Nope -- array.count is just fine in that context. Syntactically, anyway. Stylistically? No particular standard is recommended at this time. – bbum Oct 18 '10 at 17:22
this is the same as if (!array.count) – user102008 Apr 18 '12 at 1:20
I think the weight of stylistic opinion is against dot notation for calling generic methods on an object, so I'm with @Rengers on this one. <cowers in a corner waiting for holy war> – davidf2281 May 9 at 11:51

if ([array count] == 0)

If the array is nil, it will be 0 as well, as nil maps to 0; therefore checking whether the array exists is unnecessary.

Also, you shouldn't use array.count as some suggested. It may -work-, but it's not a property, and will drive anyone who reads your code nuts if they know the difference between a property and a method.

share|improve this answer

you can try like this

if ([array count] == 0)

share|improve this answer

Just to be really verbose :)

if (array == nil || array.count == 0)
share|improve this answer

As nil maps to 0, which equals NO, the most elegant way should be

if (![array count])

the '==' operator is not necessary.

share|improve this answer
if (array == (id)[NSNull null] || [array count]==0){
NSLog(@"array is empty");
}
share|improve this answer

You can also do this kind of test using if (nrow>0). If your data object is not formally an array, it may work better.

share|improve this answer

null and empty are not the same things , i suggest you treat them in differently

if (array == [NSNull null]) {
    NSLog(@"It's null");
} else if (array == nil || [array count] == 0) {
     NSLog(@"It's empty");
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.