Objective-C Runtime bindings and wrapper for Rust.
- Documentation: http://ssheldon.github.io/rust-objc/objc/
- Crate: https://crates.io/crates/objc
Messaging objects
Objective-C objects can be messaged using the msg_send!
macro:
let cls = get.unwrap;
let obj: *mut Object = msg_send!;
let hash: usize = msg_send!;
let is_kind: BOOL = msg_send!;
// Even void methods must have their return type annotated
let _: = msg_send!;
Declaring classes
Classes can be declared using the ClassDecl
struct. Instance variables and
methods can then be added before the class is ultimately registered.
The following example demonstrates declaring a class named MyNumber
that has
one ivar, a u32
named _number
and a number
method that returns it:
let superclass = get.unwrap;
let mut decl = new.unwrap;
// Add an instance variable
decl.;
// Add an ObjC method for getting the number
extern
unsafe
decl.register;
Exceptions
By default, if the msg_send!
macro causes an exception to be thrown, this
will unwind into Rust resulting in unsafe, undefined behavior.
However, this crate has an "exception"
feature which, when enabled, wraps
each msg_send!
in a @try
/@catch
and panics if an exception is caught,
preventing Objective-C from unwinding into Rust.