cacao/examples/ios-beta
Ryan McGrath c713194262
v0.3.
- Changes internal target_os flags to be feature flags; macOS is now
  appkit, and iOS/tvOS are now uikit. This enables platforms that are
  not Apple-specific platforms that use frameworks to be compiled for.

- Updates the examples to handle closing/quitting better.
2021-08-07 22:31:48 -07:00
..
main.rs v0.3. 2021-08-07 22:31:48 -07:00
readme.md v0.3. 2021-08-07 22:31:48 -07:00

Cacao iOS Support

This, unlike the macOS side of things, is much more alpha-quality. It does work, though - and this example will likely end up being a "kitchen sink" to figure things out with.

To run

Since this needs to run in an iOS simulator or on a device, you can't run it like a typical example. Follow the instructions below to give it a go:

  • Start a simulator (Simulator.app).
  • cargo install cargo-bundle
  • cargo bundle --example ios-beta --target x86_64-apple-ios
  • xcrun simctl install booted target/x86_64-apple-ios/debug/examples/bundle/ios/cacao-ios-beta.app
  • xcrun simctl launch --console booted com.cacao.ios-test

Current Support

Not much, but the basics of the scene delegate system work, along with view support, colors, and layout. Play around!