In my app some of UIView
s don't react on Apple Pencil. When I make touch by finger, all works fine. I supposed that this might be caused by adding new property type
in iOS 9. And I tried to change the type of touches:
touch.type = UITouchTypeDirect;
But this is readonly property. Does exist any way to make equal touch by finger and touch by Apple Pencil?
How do I make my app react on Apple Pencil?