1 unstable release

0.2.0 Apr 17, 2024

#68 in macOS and iOS APIs

Download history 216/week @ 2024-04-15 2432/week @ 2024-04-22

2,648 downloads per month
Used in 426 crates (23 directly)

MIT license

6MB
125K SLoC

objc2-app-kit

Latest version License Documentation CI

Rust bindings to Apple's framework AppKit.

This README is kept intentionally small to consolidate the documentation, see the Rust docs for more details on this crate.

This crate is part of the objc2 project, see that for related crates.


lib.rs:

Bindings to the AppKit framework

See Apple's docs and the general docs on framework crates for more information.

Note that a lot of functionality in AppKit requires that the application has initialized properly, which is only done after the application delegate has received applicationDidFinishLaunching.

You should aspire to do all your UI initialization work in there!

NSWindow

Be careful when creating NSWindow if it's not inside a window controller; in those cases you're required to call window.releasedWhenClosed(false) to get correct memory management, which is also why the creation methods for NSWindow are unsafe.

Examples

Implementing NSApplicationDelegate for a custom class.

An example showing basic and a bit more advanced usage of NSPasteboard.

Dependencies