transitionWithView static method
void
transitionWithView(})
transitionWithView:duration:options:animations:completion:
Implementation
static void transitionWithView(
UIView view, {
required double duration,
required UIViewAnimationOptions options,
objc.ObjCBlock<ffi.Void Function()>? animations,
objc.ObjCBlock<ffi.Void Function(ffi.Bool)>? completion,
}) {
objc.checkOsVersionInternal(
'UIView.transitionWithView:duration:options:animations:completion:',
iOS: (false, (4, 0, 0)),
);
_objc_msgSend_q6v4dl(
_class_UIView,
_sel_transitionWithView_duration_options_animations_completion_,
view.ref.pointer,
duration,
options.value,
animations?.ref.pointer ?? ffi.nullptr,
completion?.ref.pointer ?? ffi.nullptr,
);
}