I have the following NSTimer call
[NSTimer scheduledTimerWithTimeInterval:2.0
target:self
selector:@selector(panelVisibility:)
userInfo:nil
repeats:NO];
-(void)panelVisibility:(BOOL)visible{
...
}
where I need to pass a BOOL value to the panelVisibility method. How do I specify the parameter value?