9 releases

0.2.0 Apr 17, 2024
0.2.0-alpha.6 Jul 19, 2022
0.2.0-alpha.5 Jun 13, 2022
0.2.0-alpha.4 Jan 3, 2022
0.1.1 Nov 19, 2021

#55 in macOS and iOS APIs

Download history 50/week @ 2024-01-15 18/week @ 2024-01-22 5/week @ 2024-01-29 21/week @ 2024-02-19 66/week @ 2024-02-26 4/week @ 2024-03-04 62/week @ 2024-03-11 40/week @ 2024-04-01 378/week @ 2024-04-15 2593/week @ 2024-04-22 26227/week @ 2024-04-29

29,198 downloads per month
Used in 479 crates (58 directly)

MIT license

3MB
58K SLoC

objc2-foundation

Latest version License Documentation CI

Rust bindings to Apple's framework Foundation.

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 Foundation framework

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

This is the [std] equivalent for Objective-C, containing essential data types, collections, and operating-system services.

Rust vs. Objective-C types

A quick overview of some types you will encounter often in Objective-C, and their approximate Rust equivalent.

Objective-C (approximately) equivalent Rust
NSData* Arc<[u8]>
NSMutableData* Vec<u8>
NSString* Arc<str>
NSMutableString* String
NSValue* Arc<dyn Any>
NSNumber* Arc<enum { I8(i8), U8(u8), I16(i16), U16(u16), I32(i32), U32(u32), I64(i64), U64(u64), F32(f32), F64(f64), CLong(ffi::c_long), CULong(ffi::c_ulong) }>
NSError* Arc<dyn Error + Send + Sync>
NSException* Arc<dyn Error + Send + Sync>
NSRange ops::Range<usize>
NSComparisonResult cmp::Ordering
NSArray<T>* Arc<[T]>
NSMutableArray<T>* Vec<T>
NSDictionary<K, V>* Arc<HashMap<K, V>>
NSMutableDictionary<K, V>* HashMap<K, V>
NSEnumerator<T>* Box<dyn Iterator<T>>
NSCopying* Box<dyn Clone>

Examples

Basic usage of a few Foundation types.

$ cargo add objc2-foundation --features=all
use objc2_foundation::{ns_string, NSCopying, NSArray};

let string = ns_string!("world");
println!("hello {string}");

let array = NSArray::from_id_slice(&[string.copy()]);
println!("{array:?}");

An example showing how to define your own interfaces to parts that may be missing in the autogenerated interface.

Dependencies