pub unsafe trait UIPageControlTimerProgressDelegate: UIPageControlProgressDelegate {
// Provided methods
unsafe fn pageControlTimerProgressDidChange(
&self,
progress: &UIPageControlTimerProgress,
)
where Self: Sized + Message { ... }
unsafe fn pageControlTimerProgress_shouldAdvanceToPage(
&self,
progress: &UIPageControlTimerProgress,
page: NSInteger,
) -> bool
where Self: Sized + Message { ... }
}
Available on crate feature
UIPageControlProgress
only.Expand description
Provided Methods§
Sourceunsafe fn pageControlTimerProgressDidChange(
&self,
progress: &UIPageControlTimerProgress,
)
unsafe fn pageControlTimerProgressDidChange( &self, progress: &UIPageControlTimerProgress, )
Called when the progress has changed from the time interval progress.
Sourceunsafe fn pageControlTimerProgress_shouldAdvanceToPage(
&self,
progress: &UIPageControlTimerProgress,
page: NSInteger,
) -> bool
unsafe fn pageControlTimerProgress_shouldAdvanceToPage( &self, progress: &UIPageControlTimerProgress, page: NSInteger, ) -> bool
Determines if the time interval progress should advance to the next page upon progress completion of the current page’s duration. Default is YES.