Hi, I was looking into 3D touch and what I want to do is to is to respond to the user when he/she presses harder or softer however I'm not sure how to detect it.
According to the documentation, force is a property of a touch event but events are triggered when the user begins touching or moves the finger.
Basically, I have 2 questions
1) What the value of force means in the touchesBegin event? Wouldn't be always some very low number because the events is fired when the user begins the touch event?
2) Does pressing harder or lighter constitutes to a movement? Maybe I can get updated value in the touchesMoved when the user changes the pressure? If not, how to continuously get the current force?
Thanks!
1) The value in touchesBegin will be the initial force being applied when the touch event begins. The value will be in the range of 0 to maximumPossibleForce. In general it will indeed likely be a low number, but you should not build any assumptions based on what it will be. It'll be important for you to get a device that supports 3D Touch and see what works well for your application.
2) Yes, it's possible that simply pressing harder or software without actually moving will generate "move" events. This is one thing to watch out for. Making an assumption that a move event actually changes the x or y position of the touch can potentially confuse your app. You need to be prepared to handle move events that only change the force value.
Out of curiousity, can you give some more details as to what you're trying to do? I just want to make sure that the higher level view controller APIs wouldn't satisfy your needs and that you would actually need to use the force property. What type of app are you working on?