Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 TypeOfCalc 类,它有一个属性 (bool),在此基础上我现在可以如何进行计算(例如 true 代表百万或 false 代表数千),然后返回更正的结果。
问题是我需要以某种方式绑定(设置)标签文本,因此在运行时当 TypeOfCalc 具有属性 true 时,标签应该显示示例:
计算 (Mil):
否则,如果 TypeOfCalc 的属性为 false,则此标签应为:
计算 (TSD):
(图像必须以我必须设置的所有形式设置)对不起我的英语不好
在后面的代码中你可以做这样的事情。
myLabel.text = TypeOfCalc.property == true ? "Calc (Mil):" : "Calc (TSD):";