modifyAnimationsWithRepeatCount static method

void modifyAnimationsWithRepeatCount(
  1. double count, {
  2. required bool autoreverses,
  3. required ObjCBlock<Void Function()> animations,
})

modifyAnimationsWithRepeatCount:autoreverses:animations:

Implementation

static void modifyAnimationsWithRepeatCount(
  double count, {
  required bool autoreverses,
  required objc.ObjCBlock<ffi.Void Function()> animations,
}) {
  objc.checkOsVersionInternal(
    'UIView.modifyAnimationsWithRepeatCount:autoreverses:animations:',
    iOS: (false, (13, 0, 0)),
  );
  _objc_msgSend_nxk2e9(
    _class_UIView,
    _sel_modifyAnimationsWithRepeatCount_autoreverses_animations_,
    count,
    autoreverses,
    animations.ref.pointer,
  );
}