removeMotionEffect method

void removeMotionEffect(
  1. UIMotionEffect effect
)

! Stops applying effect to the receiver. Any affected presentation values will animate to their post-removal values using the present UIView animation context.

Implementation

void removeMotionEffect(UIMotionEffect effect) {
  objc.checkOsVersionInternal('UIView.removeMotionEffect:', iOS: (false, (7, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_removeMotionEffect_, effect.ref.pointer);
}