如何在多行中添加两个字符串?
我有两个字符串,我想在表视图中以两行显示,但在同一单元格中。这些字符串与邮件单元格文本标签分开。因此,除了单元格标签之外,我想在多行单元格的右侧添加两个字符串。
NSString * string1 = @"Up";
NSString * string2 = @"Down";
我希望它们像这样显示:
UP
Down
请帮忙!!!
I have two string which i want to display in my table view in two lines but in same cell. These strings are separate from the mail cell text label. So apart from cell label i want to add two more string on the right side of the cell in multiple lines.
NSString * string1 = @"Up";
NSString * string2 = @"Down";
I want them to be displayed like this:
UP
Down
Please help!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 UILabels 作为子视图添加到单元格中,或者更好的是,将 UITableViewCell 子类化以对其进行自定义。
TableView 编程指南中详细解释了所有内容,特别是“仔细观察 TableView 单元格”一章,Apple 解释了自定义 TableView 单元格的多种可能性,并发布了有关该概念的代码示例和图片。
(实际上,您应该考虑阅读整个编程指南,其中解释了很多有关表格视图的内容,它像所有 Apple 编程指南一样值得阅读)
Simply add UILabels as subviews to your cells, or better, subclass UITableViewCell to customize it.
Everything is explained in detail in the TableView Programming Guide, especially the chapter "A closer look at TableView cells" where Apple explains multiple possibilities to customize your TableView cells and post code samples and pictures about the concept.
(Actually you should consider reading the whole programming guide that explains a lot about tableviews, it's worth reading like every Apple Programming Guides)