use objc2::rc::{Id, Owned};
use objc2::runtime::{Class, Object};
use objc2::{class, msg_send};
#[cfg(feature = "malloc")]
use objc2::{sel, Encode};
fn main() {
let cls = class!(NSObject);
println!("NSObject size: {}", cls.instance_size());
#[cfg(feature = "malloc")]
{
println!("NSObject ivars:");
for ivar in cls.instance_variables().iter() {
println!("{}", ivar.name());
}
}
let obj: Id<Object, Owned> = unsafe {
let obj: *mut Object = msg_send![cls, alloc];
let obj: *mut Object = msg_send![obj, init];
Id::new(obj).unwrap()
};
println!("NSObject address: {:p}", obj);
let isa: *const Class = unsafe { *obj.ivar("isa") };
println!("NSObject isa: {:?}", isa);
#[cfg(feature = "malloc")]
{
let hash_sel = sel!(hash);
let hash_method = cls.instance_method(hash_sel).unwrap();
let hash_return = hash_method.return_type();
println!("-[NSObject hash] return type: {:?}", hash_return);
assert!(usize::ENCODING.equivalent_to_str(&hash_return));
}
let hash: usize = unsafe { msg_send![&obj, hash] };
println!("NSObject hash: {}", hash);
}