1
A
回答
1
是,appletv的屏幕根據實際的電視設備是不同的大小。
如果你想從設備得到連接電視的尺寸, 按照這些:
通知中心
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
[center addObserver:self selector:@selector(handleScreenDidConnectNotification:) name:UIScreenDidConnectNotification object:nil];
連通知
-(void)handleScreenDidConnectNotification : (NSNotification *)aNotification{
UIScreen *newScreen = [aNotification object];
CGRect screenBounds = newScreen.bounds;
// screenBounds --> Get the size from it
}
相關問題
- 1. iOS 8和UIScreen尺寸問題
- 2. 爲什麼我的UIScreen和UIWindow尺寸不匹配?
- 3. iPhone 6加真實設備UIScreen mainScreen尺寸奇怪
- 4. 爲什麼[UIScreen mainScreen] .bounds]沒有返回全屏尺寸?
- 5. Magento產品尺寸的尺寸單位
- 6. Devel ::尺寸報告的尺寸
- 7. 尺寸圖像的尺寸1600 * 1200
- 8. CVMat尺寸/尺寸/形狀
- 9. NSImageView尺寸vs NSImage尺寸
- 10. 計算尺寸/尺寸
- 11. ID3D11ShaderResourceView的尺寸
- 12. Xcode - 如何添加xib啓動畫面而不更改UIScreen尺寸
- 13. ExcelWorksheet尺寸的NullReferenceException
- 14. 大尺寸的MPI_Type_vector
- 15. 的Javascript Window.Open尺寸
- 16. 的Tableau:由尺寸
- 17. 尺寸儀... - wxPython的
- 18. 的fancybox錯尺寸
- 19. Valgrind的:尺寸8
- 20. 控制::的尺寸::
- 21. 尺寸
- 22. 我的html表格的框尺寸沒有合適的尺寸
- 23. 尺寸類別和UITableViewCell/UICollectionViewCell尺寸
- 24. Silverlight 3:尺寸模型/ 100%尺寸
- 25. 如何用wkhtmltopdf處理尺寸/尺寸?
- 26. 尺寸圖像以適合WebView尺寸
- 27. 全尺寸Silverlight應用尺寸
- 28. PDF尺寸對實際內容尺寸
- 29. 屏幕尺寸到圖像尺寸
- 30. 在較小的屏幕尺寸下適合尺寸的內容
好吧我只是意識到d,通常支持1080p的AppleTV3,當從應用程序做AirPlay時只能處理720p ......正如一些人已經在這裏討論的那樣http://stackoverflow.com/q/9952739/129202擁有1080p輸出真的很不錯。 – Jonny
好吧,更正確的答案可能應該是,使用AirPlay的媒體流可能適用於1080p的媒體,如視頻和圖片,而*鏡像*只適用於720p。而且這是「鏡像」,將在製作應用程序時用於任何其他情況。有趣的是,即使它被稱爲鏡像,兩個屏幕的內容也不同,所以鏡像詞根本不適合。讓我們希望Apple有一天會清除它... – Jonny