Trait UIFontPickerViewControllerDelegate

Source
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§

Source

unsafe fn fontPickerViewControllerDidCancel( &self, view_controller: &UIFontPickerViewController, )
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
Source

unsafe fn fontPickerViewControllerDidPickFont( &self, view_controller: &UIFontPickerViewController, )
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.

Trait Implementations§

Source§

impl ProtocolType for dyn UIFontPickerViewControllerDelegate

Source§

const NAME: &'static str = "UIFontPickerViewControllerDelegate"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn UIFontPickerViewControllerDelegate

Implementations on Foreign Types§

Source§

impl<T> UIFontPickerViewControllerDelegate for ProtocolObject<T>

Implementors§

Source§

impl UIFontPickerViewControllerDelegate for UITextFormattingCoordinator

Available on crate feature UITextFormattingCoordinator only.