I have an if else statement and have 2 perfectly proper arguments in there, however the second one if gives me this warning :
Use of logical '&&' with constant operand
The code used is:
else if ( !IS_WIDESCREEN && UIInterfaceOrientationPortrait) //No Warning or error
{
}
else if(IS_WIDESCREEN && UIInterfaceOrientationLandscapeRight) //Gives me the above warning
{
}
NOTE: IS_WIDESCREEN - is defined with the measurements for the iPhone 5 screen.
Any idea why this is??
///Edit:
Added how I defined the iPhone 5
#define IS_WIDESCREEN ( fabs( ( double )[ [ UIScreen mainScreen ] bounds ].size.height - ( double )568 ) < DBL_EPSILON )
The whole thing is inside this method:
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration
shouldAutoRotateToInterfaceOrientationmethod? – aqua Oct 11 '12 at 22:10