Questions for app development with swift [closed]

0

I'm working with an app for iOS and I'm using Swift. My client who owns a restaurant would like to use an admin panel to add new dishes to the app.

I would like to know if there is a panel on the net that already does something like this or if I have to create it. If you're creating it, which language do you use to integrate with the iOS app later?

    
asked by anonymous 15.10.2015 / 04:23

1 answer

2
  

If you want to create it, what language do you use that you can then integrate with the   app iOS?

You need to have a flow of information set for your mobile application and for your WEB application.

Typically, a webservice is required to encapsulate your business rule and perform the necessary operations for your system. The application iOS and the web application should consume the services of this webservice .

The programming language used in the iOS application, WEB page, and webservice are independent and unrelated. You can, for example, create an iOS application in SWIFT, a webservice in C# and a web application with angular js .

  

I would like to know if there is a panel on the net that already does something like this or if   I'll have to create it.

You can use bootstrap templates for the visual part, there are many that simulate an administrative panel, but I do not know an application already implemented with the settings needed to integrate with your webservice . In this case, it would be necessary to perform the call operations to webservice and treat its return in the web application.

    
15.10.2015 / 13:23