-3

检查 Textfield 是否为空时,我收到此错误(“未使用属性访问结果 - getter 不应用于副作用”)。这是我的代码:

{
        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 {


}
4

1 回答 1

2

您是否尝试测试任一字符串的长度均非零?

if (text1.text.length > 0 || text2.text.length > 0)
于 2012-11-28T03:31:36.180 回答