Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anybody know how to implement such view, any tutorials, code examples, ideas.

Other good example of such view is Tweetie application that is on top of social networking appstore applications. See first screenshot of that app on appstore.

I appreciate any ideas on that.

share|improve this question

6 Answers

up vote 3 down vote accepted

Here's the answer, with example code, direct from the source (the creator of Tweetie): http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/

From the blog post: "The technique is extensible to pretty much any style cell you need - I use the same thing in Tweetie and draw the chat bubble, text, and avatar all together into a single view." You can use - (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight to create a stretchable chat bubble to put behind each cell in your table view

share|improve this answer
7  
Actually, all he describes in that post is how to do fast scrolling using a UITableView. The message bubble layout code is not in the source he provides, unless I'm missing something. – Brad Larson Mar 19 '09 at 22:41

Check out acaniChat. It's the best open source version of the iPhone Messages app. It uses Core Data and will soon use WebSockets.

I used an identical background image for the UITextView.

Comments, questions, and contributions are welcomed.

share|improve this answer

There are some thoughts on this here:

Creating a “chat bubble” user experience

Be sure to read the comments on the answers as well!

share|improve this answer

I'm pretty sure they're basically table-views with cells of different heights that are custom-drawn. You can do a lot by supplying your own background and content view's in a UITableViewCell.

share|improve this answer

We have developed an easy to reuse approach - very easily customizable, and free to use. Described in this post here: http://stexgroup.com/blog/SMS-like-chat-bubbles-on-iPhone#

share|improve this answer
3  
Rather than just linking to your company's blog post, would you mind expanding this into a full answer which describes your GitHub project? People have flagged your link-only answers as spam, but if you expanded upon them they'd be well received. – Brad Larson Aug 4 '12 at 19:24
Thx, works absolutely fantastic! – Frans Oct 31 '12 at 15:27

Check out the BubbleThingie sample code for example of how to do image bubbles with masking. It also has example of how to do the text bubbles using a UIButton or UILabel.

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.