我想确保没有任何变量(name
, adres
,code
等)是nil
. 这是我尝试过的:
if (name == nil && adres == nil && code == nil && place == nil && telNr == nil && mail == nil) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"EXAMPLE"
message:@"EXAMPLE "
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
} else { //do the rest }
问题是,当其中一个变量不是 nil 时,它会运行 else 语句,但是我想确保没有一个变量是 nil。
我试过|
而不是,&&
但它当然更糟。