程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-在WeeApp中的橫屏模式

ios-在WeeApp中的橫屏模式

編輯:編程綜合問答
在WeeApp中的橫屏模式

需要橫屏模式下,在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)
}

不知道為什麼沒實現。

最佳回答:


AppController定義這個方法:

- (void)willAnimateRotationToInterfaceOrientation:(int)arg1

然後檢測方向:

if (UIInterfaceOrientationIsLandscape(arg1)) {
    // you're in landscape mode
    float screenWidth = [UIScreen mainScreen].bounds.size.height;
}
else {
    // you're in portrait mode
    float screenWidth = [UIScreen mainScreen].bounds.size.width;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved