Pierre de LESPINAY
Pierre de LESPINAY

Reputation: 46178

Objective C - BOOL cast nil or NO

Maybe dumb question:

NSString *var = @"test";
if (var) {

Here var is casted to BOOL and compared to YES, isn't it ?

Is there any other value that can be transformed to NO when casted to BOOL than nil and NO ?

Upvotes: 0

Views: 1188

Answers (1)

user529758
user529758

Reputation:

Here var is casted to BOOL and compared to YES, isn't it ?

No, it isn't, why would it?

Is there any other value that can be transformed to NO when casted to BOOL than nil and NO ?

Any integral expression of value zero does the job.

Upvotes: 2

Related Questions