我需要一个表达式来显示绿色箭头或红色箭头;它看起来像这样:
if let tabBarController = self.tabBarController {
let indexToRemove = 3
if indexToRemove < tabBarController.viewControllers?.count {
var viewControllers = tabBarController.viewControllers
viewControllers?.remove(at: indexToRemove)
tabBarController.viewControllers = viewControllers
}
}
这就是我要展示的内容:
我该怎么做?
答案 0 :(得分:1)
您可以使用chr(9650)作为向上箭头,使用chr(9660)作为向下箭头。您可以使用“文本颜色”字段执行条件红色/绿色格式化。
所以你可以这样说:
=if(sum(Revenu)-Sum(BudgetAmount)>0,chr(9650),chr(9660))
答案 1 :(得分:0)
您可以使用两个图像(绿色箭头和红色箭头),并使用该元素中的条件来显示取决于值(sum(Revenu) - Sum(BudgetAmount)&gt; 0)。