iOSに関する解決済みの質問がたくさんあることは知っていますが、誰もUIDeviceOrientation
私のために働いてくれませんでした。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)
}
そして、これは何らかの理由で私にはうまくいきません...
前もって感謝します。