Questions tagged [jsqmessagesviewcontroller]

JSQMessagesViewController is an elegant messages UI library for iOS (now deprecated).

385 questions
0
votes
1 answer

JSQMessagesViewController Click on message action

I have implemented JSQMessagesViewController into my app, and it has been excellent thus far. However, I wish to allow a user to click on certain image messages in the list that would then take them to to another view controller. Is this possible…
Sauron
  • 6,399
  • 14
  • 71
  • 136
0
votes
2 answers

JsqMessageViewController view only showing single line texts

I am currently using JSQMessageViewController and filling it with data from a firebase table - I followed the Fire-chat example available on Firebase's site. Everything is working except for some reason the cells are only showing the first line of a…
PBWilliam
  • 3
  • 1
0
votes
1 answer

Fixing the size of textView of JSQMessagesViewController

I have tried changing the code below , commenting the textContainerInset And the contentInset , not able to find out how the container's frame changes when i add text , there appears to be nothing in the delegates of textView as well. -…
Sourav Sachdeva
  • 353
  • 6
  • 20
0
votes
1 answer

Change the background color of a single chat bubble dynamically

I'm trying to dynamically change the chat bubble background. After doing a lot of researching I thought this was the correct approach but I it is not working for me. Can anyone clear this up for me? At the top of my class I have: var incomingBubble…
Neil
  • 15
  • 8
0
votes
2 answers

NSInvalidArgumentException with using JSQMessagesViewController

I'm new to swift :D, and developing a simple chatting application using the JSQMessagesViewController. I read & followed JSQMessagesViewController sample project (https://www.syncano.io/blog/create-ios-chat-app-part1/) but my code occurs an…
0
votes
2 answers

I am not able to get Navigation Bar using JSQMessagesViewController

Problem in getting Navigation Bar using JSQMessagesViewController, I have tried getting Navigation Bar in my project, but failed to get it. Please let me know what the methods need to be added to get it. #import…
VyTcdc
  • 986
  • 10
  • 32
0
votes
2 answers

margin of customMediaItem in jsqmessageviewcontroller

i have a class that extend: JSQLoadingPhotoMediaItem, all works fine expected that in my chat i do not use image for bubble, but i have a background color and radius for textView inside the bubble, if i use the class i obtain this: The first one is…
Luca Becchetti
  • 1,210
  • 1
  • 12
  • 28
0
votes
1 answer

Issue with JSQMessages Displaying Test Messages

When I add multiple test messages, only two of them are displaying on screen. The other messages are clearly there because I can copy them, but the colors are simply not showing. When I scroll around, a new two texts appear, but it is still only…
Sampath Duddu
  • 277
  • 1
  • 5
  • 14
0
votes
1 answer

is it possible to hide message bubble

I'm using JSQMessagesViewController to implement chat in my iOS app. I need to display some system messages in the middle of the screen (see attached picture). I was hoping that I can achieve that by using the message bottom label and not showing…
Quan Ding
  • 727
  • 1
  • 10
  • 21
0
votes
1 answer

Issues with use_frameworks in Podfile

I'm currently having an issue with integrating a specific cocoapod and was wondering if I could get some help/insight. I'm trying to integrate the JSQMessages pod, found here: https://github.com/jessesquires/JSQMessagesViewController. When I add…
Sampath Duddu
  • 277
  • 1
  • 5
  • 14
0
votes
1 answer

Hide link inJSQMessageViewController Bubble

Is there a way to hide a link in a text inside the messageBubble? I don't need it! Is there some settings to set, for example: disableLink = true Thanks a lot for the reply!
Luca Becchetti
  • 1,210
  • 1
  • 12
  • 28
0
votes
1 answer

iOS JSQMessagesViewController Elastic Cell Behaviour

Does anyone know how I can make the cells in JSQMessagesViewController behave in an elastic manner? An example of what I am trying to achieve can be found here: https://dribbble.com/shots/1901175-Chat-Animation I have had a look at the documentation…
user5381742
0
votes
1 answer

Parse JSQMessagesViewController caching issue

I'm querying the 'Chat' class to fetch messages from Parse. Then using JSQMessagesViewController to display the fetched messages. All works fine, until I try to cache the query using: query.cachePolicy = .CacheThenNetwork The issue is the…
Hassan Mahmood
  • 1,591
  • 2
  • 12
  • 24
0
votes
0 answers

can't get view to dismiss on didExitRegion in swift

When a user exits my defined geofence. All of the other code within the function fires as expected but the view does not dismiss. Any suggestions? func locationManager(manager: CLLocationManager, didExitRegion region: CLRegion) { let defaults =…
ddpishere
  • 751
  • 1
  • 8
  • 23
0
votes
1 answer

Error using JSQMessagesViewController

Trying to make an Chat app on Iphone and I've a problem when integrating JSQMessagesViewController. here is the full page code of my "ConversationViewController" import UIKit import JSQMessagesViewController class ConversationViewController : …