x/mobile/app: panic with palm touch on iOS app

improved a problem that continues to maintain a touch-ID
that must be discarded by 'touchesCanceled' event.

Fixes golang/go#13435

Change-Id: I13635255e5317bba2202bf7a8d2dd957f7824d0a
Reviewed-on: https://go-review.googlesource.com/18180
Reviewed-by: David Crawshaw <crawshaw@golang.org>
diff --git a/app/darwin_armx.m b/app/darwin_armx.m
index 79f837a..9c96986 100644
--- a/app/darwin_armx.m
+++ b/app/darwin_armx.m
@@ -94,6 +94,10 @@
 - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event {
 	sendTouches(TOUCH_TYPE_END, touches);
 }
+
+- (void)touchesCanceled:(NSSet*)touches withEvent:(UIEvent*)event {
+    sendTouches(TOUCH_TYPE_END, touches);
+}
 @end
 
 void runApp(void) {