1 2 3 4 5 6 7 8 9 10 11 12
use crate::{arc, define_obj_type, ns, objc}; define_obj_type!( #[doc(alias = "UIResponder")] pub Responder(ns::Id), UI_RESPONDER ); #[link(name = "ui", kind = "static")] unsafe extern "C" { static UI_RESPONDER: &'static objc::Class<Responder>; }