fruity 0.3.0

Rusty bindings for Apple libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! [UIKit](https://developer.apple.com/documentation/uikit) framework.
//!
//! # Feature Flag
//!
//! This module corresponds to the **`ui_kit`**
//! [feature flag](../index.html#feature-flags).

#![cfg(all(feature = "ui_kit", not(target_os = "macos")))]

mod ext;

#[doc(inline)]
pub use crate::common::NSDirectionalEdgeInsets;

#[link(name = "UIKit", kind = "framework")]
extern "C" {}