How to add a new list of information to Firebase’s firestore so all users can see it the next time they open the app? [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm building an iOS app with Swift that currently uses Firebase.
Here is what I want to do:
I have a list of items, whenever I add or subtract items from that list I want to send the updated list to all users, they will receive the updated list the next time they open the app.
How should I approach this? Is it possible with Firebase?

I had the same issue
I solved it by making the users download the list each time the user enters the app.
the issue here is that they must be connected to the internet
you can back it up and check: if internet is offline - use the old list in your local database

Related

How can I make a chat app with nativeScript? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I need to implement a chat into my app and im not sure on what to use and how. I don't know what is required for creating a chat, do I need to use some special stuff or is it enough with posting the messages to a database and then the other user retrieve that message?
You can use Firebase MBaaS with NativeScript, to make a chat app.
Or you can also take another approach and use QuickBlox, Parley, Applozic, Connectycube, etc.

Firebase Chat - Peer to Peer [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am currently attempting to create a chat app, powered by Firebase. Ultimately, my goal is to allow users to message each other (pretty simple).
However, I am currently stuck on how to accomplish this.
Right now, I am able to create one huge, group chat, where users can post under different usernames. But, for ideal functionality, I would need users to be able to message each other directly, and not in one huge group chat.
Any help would be appreciated!
If you go checkout JSQMessageViewController it is a pod that provides all the functionality of the messages app. They also have an example that is done by fireBase written in swift. That may be a great place to start and finish.
https://github.com/jessesquires/JSQMessagesViewController

Building app -- need info on viewing other users playlists [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am currently building an app and would like the option of having users view other users playlists. Is this possible?
Of course this is possible. All this data would be in a database, and you would write stored procedures that would fall in a REST API that you would call from your app. You would need to do the filtering of said stored procedure to show users any kind of data you want (if you only want to show 'friends' playlists, or 'people around you'..etc). Remember, it's just all data. Nothing more. You format the data to look nice, but it's still just data.

How to send an E-mail over an iOS app using Swift? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I would like to allow users to send me emails directly through my app, and am wondering if this is possible to do?
Your best and most simple way is to bring up the send email view (or even mailto:) with your app specific email to receive comments and requests on.
Another option is to design a web page that has a couple of fields for information and then hooking it up with PHP.
Just about anything works, it all depends on how you balance user experience and easy of implementation.

How to show recently views items like eBay in iOS app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am developing an eCommerce app for iOS. I want to display recently viewed products in one of my app's views. I want to do the same thing that eBay did in their iOS app. Whenever I viewed some product or searched for a product, it showed in a recently-viewed table.
How can I do this in my iOS app? Any help is appreciated. Thanks.
You need to keep track of whatever products the user views or searches. Keep a list of product ids or whatever is appropriate. Store this list in NSUserDefaults or a database depending on your needs so the data is available each time the app is run.
Use this list to display those products in your "recently viewed products" view.

Resources