pub unsafe trait UIImagePickerControllerDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn imagePickerController_didFinishPickingImage_editingInfo(
        &self,
        picker: &UIImagePickerController,
        image: &UIImage,
        editing_info: Option<&NSDictionary<UIImagePickerControllerInfoKey, AnyObject>>
    )
       where Self: Sized + Message { ... }
    unsafe fn imagePickerController_didFinishPickingMediaWithInfo(
        &self,
        picker: &UIImagePickerController,
        info: &NSDictionary<UIImagePickerControllerInfoKey, AnyObject>
    )
       where Self: Sized + Message { ... }
    unsafe fn imagePickerControllerDidCancel(
        &self,
        picker: &UIImagePickerController
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIImagePickerController only.

Provided Methods§

source

unsafe fn imagePickerController_didFinishPickingImage_editingInfo( &self, picker: &UIImagePickerController, image: &UIImage, editing_info: Option<&NSDictionary<UIImagePickerControllerInfoKey, AnyObject>> )
where Self: Sized + Message,

👎Deprecated
Available on crate features UIImage and UINavigationController and UIResponder and UIViewController only.
source

unsafe fn imagePickerController_didFinishPickingMediaWithInfo( &self, picker: &UIImagePickerController, info: &NSDictionary<UIImagePickerControllerInfoKey, AnyObject> )
where Self: Sized + Message,

Available on crate features UINavigationController and UIResponder and UIViewController only.
source

unsafe fn imagePickerControllerDidCancel( &self, picker: &UIImagePickerController )
where Self: Sized + Message,

Available on crate features UINavigationController and UIResponder and UIViewController only.

Trait Implementations§

source§

impl ProtocolType for dyn UIImagePickerControllerDelegate

source§

const NAME: &'static str = "UIImagePickerControllerDelegate"

The name of the Objective-C protocol that this type represents.
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 UIImagePickerControllerDelegate

Implementations on Foreign Types§

source§

impl<T> UIImagePickerControllerDelegate for ProtocolObject<T>

Implementors§