Migrate iOS Sdk to Swift #1460
JulianBissekkou
started this conversation in
General
Replies: 1 comment 4 replies
-
Related: #1248
Do you mean Objective-C? Swift also has some C++ interop, didn't look into it too much yet. https://www.swift.org/documentation/cxx-interop/ |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The iOS sdk is written in objective C, however most (if not all) iOS Apps use Swift and therefore having a Swift library would be nice. It would also reduce the code that we need to write for the sdk itself.
Some APIs would also benefit from new swift features such as swift concurrency with async await. Imaging running a
await mapView.flyTo(camera)
, wouldn't that be nice? 😉We should be able to call C directly from Swift, right?
However, I am not a Swift or iOS pro so I would love to get your feedback and thoughts about this!
Beta Was this translation helpful? Give feedback.
All reactions