vote up 6 vote down star
4

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.

flag

3 Answers

vote up 1 vote down check

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

link|flag
1  
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 at 22:41
vote up 2 vote down

There are some thoughts on this here:

Creating a “chat bubble” user experience

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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