0

Is it possible to block appearing of notification screen by swiping from top edge of screen on iPhone when my application is in foreground state. Doesn't this break iOS HIG rules?

enter image description here

Olex
  • 1,656
  • 3
  • 20
  • 38
  • 1
    hava a look at [this](http://stackoverflow.com/questions/7759385/how-can-you-disable-the-ios-notification-center-within-your-app?rq=1) please – swiftBoy May 07 '13 at 11:52

1 Answers1

2

You don't want to do that. (And you can't.)

There is a way to keep it from appearing immediately, however: hide the status bar. When you do this, the system will first show a little grabby thingy when the user swipes down from the top. If the user swipes again, Notification Center will show.

enter image description here

Undo
  • 25,519
  • 37
  • 106
  • 129