在同一单元格上显示两个值,第一个值位于单元格的右侧,第二个值位于单元格的左侧
我想显示两个值(一个是字符串,另一个是整数)。
就像下面的
字符串1 00000 整数1
字符串2 00000 int2
string3 00000 int3
0--> space
我知道如何在同一个单元格上显示 2 个值,
cell.textLabel.text = [NSString stringWithFormat:@"%@ -- %d",[splitArrayValue objectAtIndex:row],IntegerValue];
但它显示如下
字符串1 00 整数1
字符串2 00000 int2
string3 000 int3
未正确对齐
我想在同一行的第二列中显示该整数值 是否可以?
先感谢您
i want to display two values (one is string and other is integer).
like following
string1 00000 int1
string2 00000 int2
string3 00000 int3
0--> spaces
i know how to display 2 values on same cell,
cell.textLabel.text = [NSString stringWithFormat:@"%@ -- %d",[splitArrayValue objectAtIndex:row],IntegerValue];
but its show something like following
string1 00 int1
string2 00000 int2
string3 000 int3
not in proper alignment
i want to display this integer value in 2nd column on same row
is it Possible?
thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该将两个单独的
UILabels
添加到单元格中,通过标签来区分它们。You should add two serparate
UILabels
into the cell, differentiating them by their tag.您还可以使用下面的代码。希望它会有所帮助。
假设有 2 个可变数组 - array1 和 array 2。
在 viewDidLoad 中,分配数组并将值存储在两个数组中。
然后继续在 cellForRowAtIndexPath 中执行以下代码。
You can also use the code below.Hope it might help.
Take 2 mutable arrays say - array1 and array 2.
In viewDidLoad, Allocate the arrays and store the values in both the arrays.
Then continue with code below in cellForRowAtIndexPath.