如何使用 UITableview 或 UICollectionView 在表格的最后一行显示数字列的总值?

Posted

技术标签:

【中文标题】如何使用 UITableview 或 UICollectionView 在表格的最后一行显示数字列的总值?【英文标题】:How to display total value of a numeric column in the last row of the table using UITableview or UICollectionView? 【发布时间】:2017-08-29 05:22:07 【问题描述】:

我想使用 UITableView 或 UICollectionView 在表格的最后一行显示列的附加值。怎么做? This is my collectionView and I have used MultiDirectional Property in it.

提前谢谢你。

【问题讨论】:

能否请您发布您所写的包含行和列的表格视图的屏幕截图,以便帮助回答 我现在发布了。非常感谢您的考虑。 【参考方案1】:

用于表格视图。

viewDidLoad()

    int Column0 = 0;

cellForRowAtIndexPath方法中为每一行的textFields附加标签

cell.txt0.tag = 0;
Column0 = Column0 + [cell.txt0.text intValue];
cell.txt1.tag = 1;

& on UITextField 委托方法

switch(textField.tag)

  case 0:
       column0 = column0 + [textField.text intValue];

也按照这个关于减号的建议管理你的逻辑

【讨论】:

以上是关于如何使用 UITableview 或 UICollectionView 在表格的最后一行显示数字列的总值?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 UITableview 或 UICollectionView 在表格的最后一行显示数字列的总值?

如何在 xib 上设置静态 UITableview?

如何在 UITableView 弹跳区域下方编辑或添加 UIView(顶部)?像 Twitter 的 - 更新等

如何将 UITableView 或 UITableViewController 集成到 UIPageViewController 中?

UITableView,如何修复页脚,使其在滚动时永远不会向上或向下移动?

如何使用关系 Swift 3 显示 UITableView