I tried to unhide a UIButton in an if-statement, like so:
if(condition)
{
myButton.hidden = NO;
}
but this did not work. Xcode says, "Property 'hidden' not found on object of type '_strong id'". I am not sure what that means.
Does anyone know how it is done?