JSQMessagesViewController is an elegant messages UI library for iOS (now deprecated).
Questions tagged [jsqmessagesviewcontroller]
385 questions
0
votes
1 answer
JSQMessageViewController - Add a label inside chat bubble, on the side of the text
I'm using JSQMessageViewController for a simple chat app I'm building, and since I'm new in Swift and iOS development in general, I need some help on how to achieve this:
I want to add a timestamp inside the chat bubble. I read that I need to change…

Harry Stocks
- 47
- 3
0
votes
1 answer
jsqmessagviewController time not display in swift
I am making a chat app and in this, I used jsqmessageviewcontroller for display chat but faced one issue in chat first item is attachment like image,pdf etc then time not display. if the first item is text then time display properly. So anyone has…

shraddha k vaishanani
- 432
- 2
- 7
- 23
0
votes
1 answer
swift firebase get Image from Storage and show in JSQMessage Controller
I want to get a saved Image in Firebase Storage.
I have the url saved in an string value in the Firebase database:
mediaUrl = url!.absoluteString
Now I want to get this image.
I observe the messages.
func observeMessages() {
let query =…

moxmlb
- 1,190
- 3
- 10
- 18
0
votes
0 answers
Collection view performBatchUpdates crash randomly in swift
I am making chat application. for chat Ui, I used jsqmessageview controller. when we load previous messages then give the following error:-
[JSQMessagesCollectionView _endItemAnimationsWithInvalidationContext:tentativelyForReordering:animator:],…

shraddha k vaishanani
- 432
- 2
- 7
- 23
0
votes
1 answer
Cannot convert value of type 'JSQPhotoMediaItem?' to expected argument type 'String?'
I'm trying to implement JSQMessageViewController with Firebase in Xcode (Swift).
I get an error: Cannot convert value of type 'JSQPhotoMediaItem?' to expected argument type 'String?' from this code below:
func observeMessages() {
…

John Doe
- 29
- 6
0
votes
0 answers
Loading audio message takes too long
I'm using JSQMessageViewController for my real-time chatting app UI, and firebase for my chatting app database. For text message and image message, the loading still consider OK, but when it comes to audio message, it take very long time. Here is my…

minimomo
- 581
- 1
- 6
- 16
0
votes
0 answers
JSQMessageViewController textview does not display link
i am using jsqmessageviewcontroller for chat application.in my app when i send url link than does not display message as link but display as message i tried this code
- (UICollectionViewCell *)collectionView:(JSQMessagesCollectionView…

Jigar
- 1,801
- 1
- 14
- 29
0
votes
2 answers
Centre image in navigation bar
I'm calling a JSQMessageViewController and adding an image as the title but it's not centred due to the offset caused by the Back left-button.
Here's my code for adding the image:
let imageView = UIImageView()
imageView.frame.size.width = 40
…

Hews
- 569
- 6
- 19
0
votes
1 answer
JSQMessagesViewController get current text
Anyone know how you get the current text of a JSQMessagesViewController? When the view disappears I wan to cache the text the user has typed in so that when they return I can repopulate.

justdan0227
- 1,374
- 18
- 48
0
votes
0 answers
Is there any way I can reply to messages inside JSQMessagesViewController?
I am looking at what WhatsApp and they have gesture recognizer which enables the user to reply to a message within the chat if he long presses a message. Is such feature available on JSQMessagesViewController. I can't find anything in the source…

bibscy
- 2,598
- 4
- 34
- 82
0
votes
1 answer
How to add user image in JSQMessageViewController Swift 4
I'm using JSQMessageViewController for my Chat Application. Tried a lot to set incoming and outgoing message users image. If anybody using this library , Please help me to set user images.
Thanks in advance.
user8324856
0
votes
1 answer
JSQMessage with media after text message's
I'm trying to load messages with JSQMessagesViewController.
But mediaMessages are added to the array last, although they should not be.
Images should be between text messages, but they appear last.
I think I need to add an empty bubble for images or…
0
votes
1 answer
JSQMessagesViewController sending location not loading
Note: This is not a copy of this question: send location using JSQLocationMediaItem
I have already tried using the code from the answer on that page, and the results did not change. My error is the same as the error shown on that question, but the…

KingCoder11
- 415
- 4
- 19
0
votes
2 answers
JSQMessagesViewController Not showing Bubble Image in Chat
my project in objective-c use JSQMessagesViewController for firebase chat, but bubble images not comes with messages.
JSQMessagesViewController and Firbase integrated via Pods.
Please help me.

Pramod
- 787
- 1
- 7
- 16
0
votes
1 answer
JSQMessagesviewcontroller can't perform segues
so I created a chat view controller using the JSQMessagesViewController following this tutorial here: https://learnappmaking.com/chat-app-ios-firebase-swift-xcode/#comment-1930 my code is more or less the same, I didn't tweak anything significant in…