setContentScrollView method
Aggregate values (e.g., NSDirectionalRectEdgeAll) are accepted in the edge
parameter; NSDirectionalRectEdgeLeading and Trailing are ignored on iOS 15.0
Implementation
void setContentScrollView(UIScrollView? scrollView, {required NSDirectionalRectEdge forEdge}) {
objc.checkOsVersionInternal('UIViewController.setContentScrollView:forEdge:', iOS: (false, (15, 0, 0)));
_objc_msgSend_13y7vr7(
this.ref.pointer,
_sel_setContentScrollView_forEdge_,
scrollView?.ref.pointer ?? ffi.nullptr,
forEdge.value,
);
}