cidre 0.12.0

Apple frameworks bindings for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{arc, define_obj_type, ns, objc};

define_obj_type!(
    pub Responder(ns::Id),
    NS_RESPONDER
);

#[link(name = "app", kind = "static")]
unsafe extern "C" {
    static NS_RESPONDER: &'static objc::Class<Responder>;
}