pub unsafe trait UIFontPickerViewControllerDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn fontPickerViewControllerDidCancel(
&self,
view_controller: &UIFontPickerViewController,
)
where Self: Sized + Message { ... }
fn fontPickerViewControllerDidPickFont(
&self,
view_controller: &UIFontPickerViewController,
)
where Self: Sized + Message { ... }
}Available on crate feature
UIFontPickerViewController only.Expand description
Provided Methods§
fn fontPickerViewControllerDidCancel( &self, view_controller: &UIFontPickerViewController, )
Available on crate features
UIResponder and UIViewController only.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.