pub unsafe trait UIFontPickerViewControllerDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
unsafe fn fontPickerViewControllerDidCancel(
&self,
view_controller: &UIFontPickerViewController,
)
where Self: Sized + Message { ... }
unsafe fn fontPickerViewControllerDidPickFont(
&self,
view_controller: &UIFontPickerViewController,
)
where Self: Sized + Message { ... }
}
Available on crate feature
UIFontPickerViewController
only.Expand description
Provided Methods§
unsafe fn fontPickerViewControllerDidCancel( &self, view_controller: &UIFontPickerViewController, )
Available on crate features
UIResponder
and UIViewController
only.unsafe fn fontPickerViewControllerDidPickFont( &self, view_controller: &UIFontPickerViewController, )
Available on crate features
UIResponder
and UIViewController
only.Trait Implementations§
Source§impl ProtocolType for dyn UIFontPickerViewControllerDelegate
impl ProtocolType for dyn UIFontPickerViewControllerDelegate
impl<T> ImplementedBy<T> for dyn UIFontPickerViewControllerDelegate
Implementations on Foreign Types§
impl<T> UIFontPickerViewControllerDelegate for ProtocolObject<T>where
T: ?Sized + UIFontPickerViewControllerDelegate,
Implementors§
impl UIFontPickerViewControllerDelegate for UITextFormattingCoordinator
Available on crate feature
UITextFormattingCoordinator
only.