检查Xcode中的多个变量值

时间:2012-03-10 14:15:29

标签: objective-c cocoa-touch user-interface alerts

我正在创建一个iPhone应用程序,它从用户那里获取许多值并将它们分配给变量。

如果两个以上的变量值等于零,我想显示一条警告消息。

基本上,如果用户有两个空字段,则应显示一条警告,指出数据不足。

知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

你的问题有点模糊,但

  1. 查找错误
  2. 显示提醒
  3. 单独某处伪代码的行:

    int errorCount = 0;
    
    if(var1 == 0) {
        errorCount++;
    }
    
    if(var2 == 0) {
        errorCount++;
    }
    
    // check all variables...
    
    // Show alert if there are any errors
    if(errorCount > 0) {
        UIAlertView *alert = [[UIAlertView alloc]
                  initWithTitle:@"Title"
                  message:[NSString stringWithFormat:@"You have %d errors", errorCount]
                  delegate:nil
                  cancelButtonTitle:@"GoFightWin"
                  otherButtonTitles: nil, nil];
        [alert show];
        [alert release];   
    }