Disable iOS 5 Notification Center Gesture in the app

I am developing an application in kiosk mode, and I want to warn him about how to warn about it (top to bottom). Since the application is not distributed using the private AppStore APIs, it is allowed.

I looked through the class dump UIKit, but did not find any tips on how to disable it (and I don’t know where to look, I tried UIApplicationand UIWindow).

Has anyone tried this yet and succeeded?

+5
source share
1 answer

It can be a little more complicated because you are trying to disable the iOS function for yourself, for example, finger gestures on fingers on an iPad and so on. Some people use this method to determine the other side of the notification center swipe:

statusBarHidden = YES

and then you can redefine the side:

setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft

as an example.

I think you could not find any hacks to prevent iOS notification at all. As a final approach, you can get some profit from working with jaiblroken features on unlocked devices ...

0
source

All Articles