“未使用属性访问结果 - 不应将getter用于副作用”检查Textfield是否为空时出错

时间:2012-11-28 03:22:21

标签: iphone ios xcode ipad uitextfield

我在检查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 {


}

1 个答案:

答案 0 :(得分:2)

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

if (text1.text.length > 0 || text2.text.length > 0)