I compiled a native binary from C code for iOS arm device. If looking it's info through lipo
it shows this:
$ lipo -info iOS_binary
Architectures in the fat file: iOS_binary are: armv7 armv7s arm64
It is a binary which only needs to run in the backend, and will serve API on port 7778 when running, which I want to use with the iOS App's front end.
For iOS App, I'm considering Ionic framework, using Cordova, meteor and nodejs.
I'm new to this iOS development, please help me on how can I run this native binary in my iOS App.
Thanks in advance :)