如何在多行中添加两个字符串?

发布于 2024-11-17 07:58:55 字数 240 浏览 1 评论 0原文

我有两个字符串,我想在表视图中以两行显示,但在同一单元格中。这些字符串与邮件单元格文本标签分开。因此,除了单元格标签之外,我想在多行单元格的右侧添加两个字符串。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可爱咩 2024-11-24 07:58:55

只需将 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文