pub unsafe trait UINavigationBarDelegate: UIBarPositioningDelegate + IsMainThreadOnly {
// Provided methods
unsafe fn navigationBar_shouldPushItem(
&self,
navigation_bar: &UINavigationBar,
item: &UINavigationItem
) -> bool
where Self: Sized + Message { ... }
unsafe fn navigationBar_didPushItem(
&self,
navigation_bar: &UINavigationBar,
item: &UINavigationItem
)
where Self: Sized + Message { ... }
unsafe fn navigationBar_shouldPopItem(
&self,
navigation_bar: &UINavigationBar,
item: &UINavigationItem
) -> bool
where Self: Sized + Message { ... }
unsafe fn navigationBar_didPopItem(
&self,
navigation_bar: &UINavigationBar,
item: &UINavigationItem
)
where Self: Sized + Message { ... }
unsafe fn navigationBarNSToolbarSection(
&self,
navigation_bar: &UINavigationBar
) -> UINavigationBarNSToolbarSection
where Self: Sized + Message { ... }
}Available on crate features
UIBarCommon and UINavigationBar only.Provided Methods§
Available on crate features
UINavigationItem and UIResponder and UIView only.Available on crate features
UINavigationItem and UIResponder and UIView only.Available on crate features
UINavigationItem and UIResponder and UIView only.Available on crate features
UINavigationItem and UIResponder and UIView only.Available on crate features
UIResponder and UIView only.