程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-檢測outletcollection中所有項目

ios-檢測outletcollection中所有項目

編輯:編程綜合問答
檢測outletcollection中所有項目

在進入下一個視圖中需要確保當前的控制段都被選中了

-(void)checkAllSegments
{   BOOL alertShown;
    alertShown = NO;
    for (UISegmentedControl *swItem in allSegmentControlOutlet) {
        int selectedSegment = swItem.selectedSegmentIndex;
        swItem.segmentedControlStyle = UISegmentedControlStyleBar;
//didPass = YES;
        if (selectedSegment == -1) {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Fill in all forms"
                                                            message:@"Please go back and fill in missing info"
                                                           delegate:nil
                                                  cancelButtonTitle:@"OK"                                                  otherButtonTitles:nil];

           // [swItem setTintColor:[UIColor redColor]];
            if (!alertShown) {
                [alert show];
                alertShown = YES;
                didPass = NO;
                return;
            }
        }
    }
    if (didPass) {
        [self performSegueWithIdentifier:@"ToHiring" sender:self];
        }
}

但是我不知道應該將 didPass = YES;放到哪,這句代碼所在的位置會被注釋掉。除非最後一條循環完成。有沒有更好的方法解決?

最佳回答:


給你改一下。

 -(void)checkAllSegments
    {   BOOL alertShown;
        alertShown = NO;
        for (UISegmentedControl *swItem in allSegmentControlOutlet) {
            int selectedSegment = swItem.selectedSegmentIndex;
            swItem.segmentedControlStyle = UISegmentedControlStyleBar;
    //didPass = YES;
            if (selectedSegment == -1) {
                alertShown=YES;
                break;  /////如果有一個沒有被選擇,直接退出for循環
            }
        }
        if (alertShown) {
              UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Fill in all forms"
                                         message:@"Please go back and fill in missing info"
                                         delegate:nil
                                         cancelButtonTitle:@"OK"
                                         otherButtonTitles:nil];
        }else {
           [self performSegueWithIdentifier:@"ToHiring" sender:self];
        }

    }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved