How do you prevent Notification Center in games?

后端 未结 2 614
天命终不由人
天命终不由人 2020-12-19 13:14

In iOS7, swiping up from the bottom of the screen or down from the top of the screen slides a \"glass screen\" on top of the app you are using. In many games, it is very fru

2条回答
  •  独厮守ぢ
    2020-12-19 13:47

    To get the same behaviour in iOS 11, you must implement preferredScreenEdgesDeferringSystemGestures on your view controller:

    - (UIRectEdge)preferredScreenEdgesDeferringSystemGestures {
        return UIRectEdgeAll;
    }
    

提交回复
热议问题