pub unsafe trait MKLookAroundViewControllerDelegate: NSObjectProtocol {
// Provided methods
unsafe fn lookAroundViewControllerWillUpdateScene(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerDidUpdateScene(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerWillPresentFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerDidPresentFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerWillDismissFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerDidDismissFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
}
Available on crate feature
MKLookAroundViewController
only.Expand description
Provided Methods§
unsafe fn lookAroundViewControllerWillUpdateScene( &self, view_controller: &MKLookAroundViewController, )
Available on crate feature
objc2-app-kit
and macOS only.unsafe fn lookAroundViewControllerDidUpdateScene( &self, view_controller: &MKLookAroundViewController, )
Available on crate feature
objc2-app-kit
and macOS only.unsafe fn lookAroundViewControllerWillPresentFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on crate feature
objc2-app-kit
and macOS only.unsafe fn lookAroundViewControllerDidPresentFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on crate feature
objc2-app-kit
and macOS only.unsafe fn lookAroundViewControllerWillDismissFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on crate feature
objc2-app-kit
and macOS only.unsafe fn lookAroundViewControllerDidDismissFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on crate feature
objc2-app-kit
and macOS only.