简体   繁体   中英

iOS Table view cells with transparent background

is it possible to make a table look like messages on iPhone. So that maybe each message is a table section with an image of a bubble and on top of that bubble is a label with the message text. Can a table cell be entirely transparent so that only the bubble image is displayed without the white cell, and the border? Thanks

Have a look at this :

UIBubbleTableView

If you want the growing textView where you type the message, this is the one :

HPGrowingTextView

When you create your cell you can make the background transparant:

cell.contentView.backgroundColor = [UIColor clearColor];

You can simply add an imageView as backgroundView.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM