ios 螢幕,狀態列(statusbar),程式視窗 尺寸擷取和旋轉螢幕時的尺寸變化

來源:互聯網
上載者:User
app尺寸,去掉狀態列

CGRect r = [ UIScreen mainScreen ].applicationFrame;

這個尺寸不會隨著旋轉螢幕而交換寬高,但旋轉螢幕後,會自動修改寬高減掉狀態列高度。

豎屏時(4寸):x=0, y=20, width=320, height=548

橫屏時(4寸):x=0,y=0, width=300, height=568


螢幕尺寸

CGRect rx = [ UIScreen mainScreen ].bounds;

(4寸)rx=x=0, y=0, width=320, height=568

尺寸固定,不隨旋轉螢幕變化



狀態列尺寸

CGRect rect;
rect = [[UIApplication sharedApplication] statusBarFrame];

始終以豎向為高度。

豎屏時(4寸):x=0, y=0, width=320, height=20

橫屏時(4寸):x=300, y=0, width=20, height=568

iphone中擷取螢幕解析度的方法


CGRect rect = [[UIScreen mainScreen] bounds];
CGSize size = rect.size;
CGFloat width = size.width;
CGFloat height = size.height;


另外,設計UI的時候,注意使用者最小的觸控面積。有2種說法 

44*44 好像是來自sdk

64*64 來自standford講義

CGRect r = [ UIScreen mainScreen ].applicationFrame;

這個尺寸不會隨著旋轉螢幕而交換寬高,但旋轉螢幕後,會自動修改寬高減掉狀態列高度。

豎屏時(4寸):x=0, y=20, width=320, height=548

橫屏時(4寸):x=0,y=0, width=300, height=568


螢幕尺寸

CGRect rx = [ UIScreen mainScreen ].bounds;

(4寸)rx=x=0, y=0, width=320, height=568

尺寸固定,不隨旋轉螢幕變化



狀態列尺寸

CGRect rect;
rect = [[UIApplication sharedApplication] statusBarFrame];

始終以豎向為高度。

豎屏時(4寸):x=0, y=0, width=320, height=20

橫屏時(4寸):x=300, y=0, width=20, height=568

iphone中擷取螢幕解析度的方法


CGRect rect = [[UIScreen mainScreen] bounds];
CGSize size = rect.size;
CGFloat width = size.width;
CGFloat height = size.height;


另外,設計UI的時候,注意使用者最小的觸控面積。有2種說法 

44*44 好像是來自sdk

64*64 來自standford講義

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.