Reputation: 63
I'm new to iOS programming and am starting my first project. I'm wondering how clients manage the content (blogs, videos, etc) on their apps after you deliver the final product. Is their a content management system I should be implementing or do the developers usually handle that?
Upvotes: 1
Views: 92
Reputation: 13181
A developer would build it from scratch. An alternative to starting from the ground up would be to use CloudKit or some other NoSQL based web service to manage the content. Couchdb, Firebase, etc...
A client might add content in several ways. One could create a simple web form that allows a client to edit the content (empty form to add, a table with a link to edit or delete). If the client has a developer account you could add their Apple ID as a role to the CloudKit database with specific security rights to edit that database. Similar activities would apply to other platforms.
Upvotes: 1