我填写如下数据:
func tableVIEw(_ tableVIEw: NStableVIEw,vIEwFor tableColumn: NStableColumn?,row: Int) -> NSVIEw? { var cellIDentifIEr = String() var cellText = String() switch tableColumn { case tablewVIEw.tableColumns[0]?: cellText = "100" cellIDentifIEr = "Cell1" break case tablewVIEw.tableColumns[1]?: cellText = "100" cellIDentifIEr = "Cell2" break case tablewVIEw.tableColumns[2]?: cellText = "100" cellIDentifIEr = "Cell3" break default: break } if let vIEw = tableVIEw.make(withIDentifIEr: cellIDentifIEr,owner: nil) as? NStableCellVIEw { vIEw.textFIEld?.stringValue = cellText return vIEw } return nil }
现在,我想在每次选择改变时对第1列的所有值求和.我怎么能意识到这一点?
解决方法 要添加值,您必须保证所有值都是数字,或者至少可以转换为数字.之后,有必要维护一个变量接收来自tablewVIEw.tableColumns [1]的值的增量吗?
例如:
var sum = 0func tableVIEw(_ tableVIEw: NStableVIEw,row: Int) -> NSVIEw? { var cellIDentifIEr = String() var cellText = String() switch tableColumn { case tablewVIEw.tableColumns[0]?: cellText = "100" cellIDentifIEr = "Cell1" break case tablewVIEw.tableColumns[1]?: cellText = "100" sum = sum + Int(cellText) cellIDentifIEr = "Cell2" break case tablewVIEw.tableColumns[2]?: cellText = "100" cellIDentifIEr = "Cell3" break default: break } if let vIEw = tableVIEw.make(withIDentifIEr: cellIDentifIEr,owner: nil) as? NStableCellVIEw { vIEw.textFIEld?.stringValue = cellText return vIEw } return nil}
因此,在vIEwWillLayout()中,您可以使用某个标签显示sum变量的值.
吉林大学.
总结以上是内存溢出为你收集整理的macos – 对NSTableView列的文本字段的所有值求和全部内容,希望文章能够帮你解决macos – 对NSTableView列的文本字段的所有值求和所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)