gpt4 book ai didi

c# - 用信息填充表

转载 作者:行者123 更新时间:2023-11-28 21:58:56 25 4
gpt4 key购买 nike

我想将 arrayVariable1 放在顶部,第二个放在下面。

我使用命令:

            public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
UITableViewCell cell = tableView.DequeueReusableCell (cellID);

if (cell == null) {
cell = new UITableViewCell (UITableViewCellStyle.Subtitle, cellID);
}

cell.TextLabel.Text = ArrayVariable1;
cell.TextLabel.Text = ArrayVariable2;

return cell;
}

但是如果我运行它,变量 1 不会出现,只有 2。

最佳答案

你在对 cell.TextLabel.Text 的第二次赋值中覆盖了自己

cell.TextLabel.Text = ArrayVariable1;
cell.TextLabel.Text = ArrayVariable2; <-- this overwrites the line above this.

一个非常简单的解决方案...

cell.TextLabel.Text = string.Format("{0} {1}", ArrayVariable1, ArrayVariable2);

但如果您真的想要的不仅仅是串联,您就必须为您的单元格创建自定义布局并将其扩充。

关于c# - 用信息填充表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25625684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com