画面の上に UIView / UIWindow を追加しました。
UIWindow *statusBarWindow = [[UIWindow alloc] initWithFrame:[UIApplication sharedApplication].statusBarFrame];
statusBarWindow.windowLevel = UIWindowLevelStatusBar + 1;
statusBarWindow.userInteractionEnabled = NO;
[statusBarWindow makeKeyAndVisible];
ただし、これらのビューはタッチ可能であってはならず、それをタッチすると、これらの下のビューがタッチされるようにする必要があります。現在、このビューを追加しても何も起こりません。
UIView/UIWindow でタッチ イベントを処理しないようにするにはどうすればよいですか?
試してみ.userInteractionEnabled = NO
ましたが、うまくいきませんでした。ありがとう!