allowsContinuousInteraction property

bool get allowsContinuousInteraction

Returns YES if the continuous interaction is enabled, NO otherwise. Default is YES.

Implementation

bool get allowsContinuousInteraction {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UIPageControl.allowsContinuousInteraction', iOS: (false, (14, 0, 0)));
  return _objc_msgSend_91o635(_$$ref.pointer, _sel_allowsContinuousInteraction);
}
set allowsContinuousInteraction (bool value)

Returns YES if the continuous interaction is enabled, NO otherwise. Default is YES.

Implementation

set allowsContinuousInteraction(bool value) {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UIPageControl.setAllowsContinuousInteraction:', iOS: (false, (14, 0, 0)));
  _objc_msgSend_1s56lr9(_$$ref.pointer, _sel_setAllowsContinuousInteraction_, value);
}