Skip to content

Commit

Permalink
* [ios] bugfix view event
Browse files Browse the repository at this point in the history
  • Loading branch information
acton393 committed Jan 6, 2017
1 parent 3a96915 commit 83d3e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/sdk/WeexSDK/Sources/View/WXView.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
/**
* Capturing touches on a subview outside the frame of its superview if it does not clips to bounds.
*/
if (self.hidden) {
if (self.hidden || !self.userInteractionEnabled) {
return nil;
}

Expand Down

0 comments on commit 83d3e6a

Please # to comment.