objc2-app-kit 0.3.2

Bindings to the AppKit framework
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg(all(feature = "NSActionCell", feature = "NSCell"))]
use crate::NSSliderCell;
use objc2::extern_methods;

impl NSSliderCell {
    extern_methods!(
        #[unsafe(method(isVertical))]
        pub fn isVertical(&self) -> bool;
    );
}