我在检查Textfield是否为空时收到此错误(“属性访问结果未使用 - getters不应用于副作用”)。 这是我的代码:
{
if ([text1.text,text2.text length] > 0) {
// The Error was the comma between both text fields :)
}
}
编辑:这段代码在@danh
的帮助下消除了错误if (text1.text.length > 0 || text2.text.length > 0) {
}
else {
}
答案 0 :(得分:2)
您是否尝试测试任一字符串的长度是否为非零?
if (text1.text.length > 0 || text2.text.length > 0)