diff --git a/doric-iOS/Pod/Classes/Shader/DoricDraggableNode.m b/doric-iOS/Pod/Classes/Shader/DoricDraggableNode.m index 42925194..6f5a625e 100644 --- a/doric-iOS/Pod/Classes/Shader/DoricDraggableNode.m +++ b/doric-iOS/Pod/Classes/Shader/DoricDraggableNode.m @@ -43,7 +43,8 @@ - (void)onDrag:(UIPanGestureRecognizer *)gesture { - (void)blendView:(DoricStackView *)view forPropName:(NSString *)name propValue:(id)prop { if ([name isEqualToString:@"onDrag"]) { _onDragFunction = prop; + } else { + [super blendView:view forPropName:name propValue:prop]; } - [super blendView:view forPropName:name propValue:prop]; } @end