Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compiler Warning... Implicit conversion from enumeration type 'UIInterfaceOrientation' to different enumeration type 'UIDeviceOrientation'?

In Xcode I get a warning in the following line for FBConnect:

_orientation = [UIApplication sharedApplication].statusBarOrientation;

This is the full warning:

Implicit conversion from enumeration type 'UIInterfaceOrientation' to different enumeration type 'UIDeviceOrientation'

Any ideas how I can fix this?

Thanks!

like image 933
SimplyKiwi Avatar asked Jun 12 '11 05:06

SimplyKiwi


2 Answers

Try changing

_orientation = [UIApplication sharedApplication].statusBarOrientation;

to

 _orientation = (UIDeviceOrientation)[UIApplication sharedApplication].statusBarOrientation;
like image 131
Khrob Avatar answered Nov 09 '22 01:11

Khrob


How about this?

UIDeviceOrientation _orientation = [[UIDevice currentDevice] orientation];
like image 40
justinkoh Avatar answered Nov 09 '22 03:11

justinkoh