When gathering touches on the Siri Remote on Apple TV the location of the touch is alway reported back as the same location ?
let tapRecognizer = UITapGestureRecognizer(target: self, action: "tapped:")
tapRecognizer.allowedPressTypes = [NSNumber(integer: UIPressType.LeftArrow.rawValue),NSNumber(integer: UIPressType.RightArrow.rawValue)];
self.view.addGestureRecognizer(tapRecognizer)
func tapped(tap :UITapGestureRecognizer){
print(__FUNCTION__)
print(tap.locationInView(super.view))
}
Tried various option in locationInView(xxx) but nothing. Also examined tap. in the debugger and can see anything.
Any ideas, is it supported.