Questions tagged [uibubbletableview]

UIBubbleTableView is UITableView based iOS component for rendering chats like it's done in Messages application.

13 questions
5
votes
4 answers

UIBubbleTableView doesn't render in IOS 64-bit simulator

I'm running out of ideas and hoping someone in the community might give me some pointers. I'm currently using UIBubbleTableView (http://alexbarinov.github.io/UIBubbleTableView/) to integrate in-app chat into my project. Everything works/renders…
2
votes
1 answer

bubble-message with avatar images and avatar name with time-stamps

I have to implement bubble messages with the senders AVATAR and Sender's name with time-stamps same as below screen shot. I have successfully implemented the simple bubble type messaging. Right now I have some good Git-hub projects which provide…
BhavikKama
  • 8,566
  • 12
  • 94
  • 164
1
vote
1 answer

-[AVPlayerViewController retain]: message sent to deallocated instance

I am trying to add an AVPlayerViewController to a chat bubble so that any audio or video messages when received can be directly played in the chat bubble. My UITableView list contains many of these bubbles. But when I try to scroll the table view,…
1
vote
2 answers

Reading NSBubbledata on Bubble Tableview cell tap

I'm working on a chat application where I'm using Alex Barinovs chat bubble table view example. I'm able to add messages and images on the bubbles. But What I want is when I tap on any row or cell, I want to get the details of that particular cell I…
1
vote
1 answer

Why can't the gray bubble image be shown?

I am doing a chat iOS app with Swift. In ChatLogController, I added two bubble images to the chat screen.The blue bubble image is shown, but the gray bubble can't be shown. I am sure that I have added two images to the xcassets file. static let…
Magenta
  • 65
  • 7
1
vote
2 answers

UIBubbleTableView issue with iPhone 6 Plus

I have been using UIBubbleTableView for about two years now without much problem. Today I checked it on iPHone 6 Plus and to my suprise the UIBubbleTableView looks as weird as in the screen shot below. Has anyone encountered this issue before? What…
0
votes
1 answer

Tutorial information bubble control on iOS

Is there a control on iOS or a well known library that offers info bubble functionality. (I am relatively new to iOS development so I am not sure if my search keywords are off or this is just not being used on iOS very much) I would like to achieve…
Jakub Holovsky
  • 6,543
  • 10
  • 54
  • 98
0
votes
1 answer

adding subview to chat bubble (cell) in iOS

I am working on a chat application where i am using alex barinov's chat bubble example. I am able to send/receive messages. I want to add some labels and views on each chat bubble like time, date, delivered image, etc. I tried to add some labels…
0
votes
1 answer

Data does not gets added in UIBubbleTableView in iOS

I am new to iOS and i am working on chat application where i try to receive messages through XMPP and pass that received message to chat table view(UIBubbleTableView). But when i try to add that message in table view array the array becomes null,…
0
votes
1 answer

bubble in Collection View does not grow to the appropriate height

I'm building a Chatting View Controller. My chat bubble's constraints are as follows: bubbleViewRightAnchor = bubbleView.rightAnchor.constraintEqualToAnchor(self.rightAnchor, constant:…
slimboy
  • 1,633
  • 2
  • 22
  • 45
0
votes
1 answer

creating a bubble in UITableView for chat application in iOS

I am trying to create a UIBubbleTableView in my UITableview. I searched an example on the internet and tried exactly the same thing. But the example used xib, and i am using storyboard. I have imported the file given in example in my project. But…
ammy1
  • 49
  • 1
  • 8
0
votes
1 answer

iOS - guided tour with chat bubble-like pop-ups

I want to make a guided tour of my app on the first launch, but not a separated guided tour where I show images of the app. I'd like to have multiple chat-bubbles just like this one: And when I click somewhere on the screen, the next one pops up. I…
el-flor
  • 1,466
  • 3
  • 18
  • 39
-4
votes
1 answer

Chat tableView cells with custom label in swift

I want to make a chat application in swift. Can anyone tell me how to make the UI for chat cells. I know the coding is to be done in cellforRowAtIndexPath, but I don't know the exact way. And the chat cell should be in bubbles? Help me please with…