2
我想確保沒有變量(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語句,但是我想,以確保沒有任何的變量是零。
我試過|
而不是&&
,但當然它更糟糕。
你的代碼檢查它們的_all_是否爲'nil'。如果你想查看它們是否是'nil',你可以使用'||'運算符(而不是'|'運算符)。 – Rob