IOS8 stiffness detection

Any ways to discover the new Reachability iOS8 gestures in Objective-C?

The gesture is activated by double-clicking the TouchID button on the iPhone6 ​​and iPhone6Plus.

enter image description here

+4
source share
1 answer

There are no public APIs for it.

There are two related private API methods onUIApplication I can find (using any of them, you must reject the application from the App Store):

  • _setReachabilitySupported:that would supposedly enable / disable reachability (e.g. Spotlight)
  • _deactivateReachabilitywhich will return the view to its usual place on the screen

I do not see anything that informs your application that the user has performed this gesture.


UIWindow setFrame:. , , Reachability, .

+2

All Articles