0

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!

dannybess
  • 599
  • 4
  • 18
  • If your questions is "how can I model user-to-user chat rooms?", then see http://stackoverflow.com/questions/33540479/best-way-to-manage-chat-channels-in-firebase/33547123#33547123 – Frank van Puffelen Feb 15 '16 at 06:30

1 Answers1

1

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

Dan Leonard
  • 3,325
  • 1
  • 20
  • 32