iPadのマルチタスキングSplit Viewで表示されているかの判定
iPad Air 2以降で使えるマルチタスキング機能Slide Over and Split View
で表示されて操作可能状態にあるかどうかの判定です。
条件はiPadでアプリ側keyWindowの幅がデバイス画面幅の半分以下としています。
BOOL isInSplitView
= (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad
&& (CGRectGetWidth([UIApplication sharedApplication].keyWindow.frame)
<= CGRectGetWidth([[UIScreen mainScreen] bounds]) * 0.5f));
ちなみに[UIScreen mainScreen].applicationFrame
はiOS 9でdeprecatedとなります。
Author And Source
この問題について(iPadのマルチタスキングSplit Viewで表示されているかの判定), 我々は、より多くの情報をここで見つけました https://qiita.com/ShingoFukuyama/items/d72792fe15e5daa0852e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .