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となります。