我知道UIDeviceOrientation
在 iOS 中有很多已解决的问题,但没有人为我工作。我想Widget
在横向模式下制作一个居中的标签。
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
if (([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft) ||
([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeRight))
{
d = 516; //my var to change the Position (The Value is just a test)
}
由于某种原因,这对我不起作用......
提前致谢。