You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by gu...@apache.org on 2017/10/09 08:39:04 UTC

[23/50] incubator-weex git commit: * [ios] fire accessibilityMagicTap Event

* [ios] fire accessibilityMagicTap Event


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/f7e2591c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/f7e2591c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/f7e2591c

Branch: refs/heads/release
Commit: f7e2591c44257208ad3f4799bb080e2364776492
Parents: ddadd54
Author: acton393 <zh...@gmail.com>
Authored: Tue Oct 3 16:02:03 2017 +0800
Committer: acton393 <zh...@gmail.com>
Committed: Tue Oct 3 16:02:03 2017 +0800

----------------------------------------------------------------------
 ios/sdk/WeexSDK/Sources/View/WXView.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/f7e2591c/ios/sdk/WeexSDK/Sources/View/WXView.m
----------------------------------------------------------------------
diff --git a/ios/sdk/WeexSDK/Sources/View/WXView.m b/ios/sdk/WeexSDK/Sources/View/WXView.m
index 397ece3..5e099c3 100644
--- a/ios/sdk/WeexSDK/Sources/View/WXView.m
+++ b/ios/sdk/WeexSDK/Sources/View/WXView.m
@@ -65,7 +65,7 @@
 - (BOOL)accessibilityPerformMagicTap
 {
     if (self.wx_component->_accessibilityMagicTapEvent) {
-        [self.wx_component fireEvent:@"accessibilityPerformMagicTap" params:nil];
+        [self.wx_component fireEvent:@"accessibilityMagicTap" params:nil];
     }
     return [super accessibilityPerformMagicTap];
 }