icrate 0.1.2

Bindings to Apple's frameworks
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg(feature = "Foundation_NSException")]
use crate::common::*;
use crate::Foundation::NSException;

extern_methods!(
    unsafe impl NSException {
        #[method(raise)]
        pub(crate) unsafe fn raise_raw(&self);
    }
);