I have a BOOL value inside my @interface definition in my .h file. Here it is below. It has the same problem whether it's a pointer or not.
@interface myCustomViewController : UIViewController <UIWebViewDelegate> {
{
//...more iboutlets defined above
BOOL *myBoolVariableName;
}
When I compile, I get "error: property 'myBoolVariableName' with 'retain' attribute must be of object type" on the line for the import of my .h file.
I found this page here about an integer / nsnumber:
http://discussions.apple.com/thread.jspa?threadID=1846927
So, it seems I can't use BOOL values inside an @interface definition. What can I use instead?
What should I do for BOOL / boolean values?