How to access changes on any ios device
-
Good day,
I am making an ios app that creates forms and I want other users that have the app to see the forms that have been created, how would I do this. So do I need a account type thing that all users that are signed in to that account can see the forms been created, if so how do I do this.
Thank you -
You need a web server that will hold the form data, with an exposed API that your mobile apps will use.
-
Hi and welcome to devnet,
If you want to stay in C++, then you can check the Cutelyst project.
Otherwise there are quite a lot of solutions in other languages like Django, Flask or Tornado in Python, node.js if you're into JavaScript, even PHP can be considered.
-
Hi and welcome to devnet,
If you want to stay in C++, then you can check the Cutelyst project.
Otherwise there are quite a lot of solutions in other languages like Django, Flask or Tornado in Python, node.js if you're into JavaScript, even PHP can be considered.
-
Hi and welcome to devnet,
If you want to stay in C++, then you can check the Cutelyst project.
Otherwise there are quite a lot of solutions in other languages like Django, Flask or Tornado in Python, node.js if you're into JavaScript, even PHP can be considered.
-
@Tyrel said in How to access changes on any ios device:
@SGaist thanks, how would I incorporate that with my app
Incorporate what into your app ?
@Tyrel said in How to access changes on any ios device:
@SGaist How do I install it on mac
Install what ?
-
@Tyrel said in How to access changes on any ios device:
@SGaist thanks, how would I incorporate that with my app
Incorporate what into your app ?
@Tyrel said in How to access changes on any ios device:
@SGaist How do I install it on mac
Install what ?
-
Are you currently planning on running a web server on iOS ?
-
@SGaist how to install cutelyst because I am making this app on a mac because it is for ios. I didnt see an option for mac only linux an windows
@Tyrel said in How to access changes on any ios device:
@SGaist how to install cutelyst because I am making this app on a mac because it is for ios. I didnt see an option for mac only linux an windows
Get the code then compile it using
cmake
. Then you can start a new cutelyst project and begin writing your server app.Just a note - this is completely separate from your iOS app. A server should reside somewhere globally accessible (static IP on a machine you own or rent, or a cloud solution like AWS, Azure etc.) and your iOS app will access it via API you design.