What is the Objective-C way of getting a nullable bool?

Viewed 10707

How should I go about getting a bool value that I can assign true, false and nil to in Objective-C? What is the Objective-C way of doing this? Much like C#'s Nullable.

I'm looking to be able to use the nil value to represent undefined.

2 Answers
Related