Swift 3 中的 If 语句使用 OR ||操作员

If statement in Swift 3 using OR || operator

如何在 Swift 中使用 OR || 运算符的 If 语句 3

if (oName.text="" || oWeight.text="")
{
    print("Field Empty")

}

您正在分配而不是检查是否相等...

if (oName.text == "" || oWeight.text == "") {
    print("Field Empty")
}