diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-12-26 23:03:37 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-12-26 23:04:09 +0100 |
commit | 8945fa637e6e603f8d66fe60f7b5ae54d4134703 (patch) | |
tree | c11da4cec2f339b38bbf1d050e57cc7e2137ec1f | |
parent | faf8b3edbaeb591315fc6f370c1228b8caf9860f (diff) |
book: Touch the book to ensure that GH actions deploy works.
-rw-r--r-- | book/src/objc.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/book/src/objc.md b/book/src/objc.md index c7c97811..aad7ee60 100644 --- a/book/src/objc.md +++ b/book/src/objc.md @@ -34,6 +34,7 @@ foo = Foo(Foo::alloc().initWithStuff())`. ## Supported Features + * Inheritance matched to rust traits with prefixes of `I` which stands for interface. * Protocols which match to rust traits with prefixes of `P` which @@ -43,6 +44,7 @@ name and `id` is a pointer to the objective-c Object. * Blocks ## Useful Notes + * If you're targeting `aarch64-apple-ios`, you'll need to have the clang arg `--target=arm64-apple-ios` as mentioned [here](https://github.com/rust-lang/rust-bindgen/issues/1211#issuecomment-569804287). @@ -63,8 +65,10 @@ all of Core Foundation and any other frameworks. This will result in a very long compile time. ## Not (yet) Supported + * Nullablibility attributes which return `Option`s. * Probably many other things. Feel free to [open an issue](https://github.com/rust-lang/rust-bindgen/issues). # Example crate(s) + * [uikit-sys](https://github.com/simlay/uikit-sys) |