Skip to content

Commit

Permalink
fix(scrollview): Add nullable attribute to scrollView property
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed Dec 17, 2024
1 parent 5b72b8e commit 778b874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CordovaLib/include/Cordova/CDVPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ typedef int CDVWebViewNavigationType;
// the exposed Swift API and marking it as deprecated
// TODO: Remove in Cordova 9
@interface UIView (org_apache_cordova_UIView_Extension)
@property (nonatomic, weak) UIScrollView* scrollView CDV_DEPRECATED(8, "Check for a scrollView property on the view object at runtime and invoke it dynamically.");
@property (nonatomic, weak, nullable) UIScrollView* scrollView CDV_DEPRECATED(8, "Check for a scrollView property on the view object at runtime and invoke it dynamically.");
@end
#endif

Expand Down

0 comments on commit 778b874

Please sign in to comment.