pub unsafe trait UICloudSharingControllerDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
unsafe fn cloudSharingController_failedToSaveShareWithError(
&self,
csc: &UICloudSharingController,
error: &NSError,
)
where Self: Sized + Message { ... }
unsafe fn itemTitleForCloudSharingController(
&self,
csc: &UICloudSharingController,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
unsafe fn itemThumbnailDataForCloudSharingController(
&self,
csc: &UICloudSharingController,
) -> Option<Retained<NSData>>
where Self: Sized + Message { ... }
unsafe fn itemTypeForCloudSharingController(
&self,
csc: &UICloudSharingController,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
unsafe fn cloudSharingControllerDidSaveShare(
&self,
csc: &UICloudSharingController,
)
where Self: Sized + Message { ... }
unsafe fn cloudSharingControllerDidStopSharing(
&self,
csc: &UICloudSharingController,
)
where Self: Sized + Message { ... }
}
Available on crate feature
UICloudSharingController
only.Expand description
Provided Methods§
Available on crate features
UIResponder
and UIViewController
only.unsafe fn itemTitleForCloudSharingController( &self, csc: &UICloudSharingController, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder
and UIViewController
only.unsafe fn itemThumbnailDataForCloudSharingController( &self, csc: &UICloudSharingController, ) -> Option<Retained<NSData>>
Available on crate features
UIResponder
and UIViewController
only.unsafe fn itemTypeForCloudSharingController( &self, csc: &UICloudSharingController, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder
and UIViewController
only.Available on crate features
UIResponder
and UIViewController
only.unsafe fn cloudSharingControllerDidStopSharing( &self, csc: &UICloudSharingController, )
Available on crate features
UIResponder
and UIViewController
only.