Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使表格看起来像 iPhone 上的消息。因此,也许每条消息都是一个带有气泡图像的表格部分,并且在该气泡顶部是带有消息文本的标签。表格单元格是否可以完全透明,以便只显示气泡图像而没有白色单元格和边框?谢谢
看看这个:
UIBubbleTableView
如果您想要键入消息的不断增长的 textView,这就是:
HPGrowingTextView
创建单元格时,您可以使背景透明:
cell.contentView.backgroundColor = [UIColor clearColor];
您可以简单地将 imageView 添加为 backgroundView。