cidre 0.11.4

Apple frameworks bindings for rust
Documentation
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>;
}