I need to check if the property is empty or not. It is declared in my header file:
@property (nonatomic) char nextOperation;
And in the .m file:
@synthesize nextOperation;
Correct me if I do something wrong, I'm quite new in this world.
In the method I have to check if nextOperation has anything on it. If true ( YES ?), I have to do something, and after that assign a new value to this property.
I tried nextOperation == '' , empty , isEmpty , isEmpty , and everything throws me an Xcode warning / error.
source share