Iphone 一个UIPickerView两个数据源/视图工作一次,然后崩溃

Iphone 一个UIPickerView两个数据源/视图工作一次,然后崩溃,iphone,xcode,ios,ios4,uipickerview,Iphone,Xcode,Ios,Ios4,Uipickerview,我试图在我的应用程序中显示一个UIPickerView,根据选择的按钮,UIPickView将弹出并填充所选按钮的相关数据。不确定这是否重要,但一个UIPickerView有三列,一个有两列。当两个语句分开时,我可以让它们完美地工作,但在我将它们嵌套到语句中的那一分钟,如果它中断了 第三次,当我选择触发相反UIPickerView的按钮时,它崩溃,并给出NSRangeException错误,并且它正试图在数组[0…1]中的索引2处查找对象。我的理解是,程序认为数组中的某个点中存在一个不存在的对象

我试图在我的应用程序中显示一个UIPickerView,根据选择的按钮,UIPickView将弹出并填充所选按钮的相关数据。不确定这是否重要,但一个UIPickerView有三列,一个有两列。当两个语句分开时,我可以让它们完美地工作,但在我将它们嵌套到语句中的那一分钟,如果它中断了

第三次,当我选择触发相反UIPickerView的按钮时,它崩溃,并给出NSRangeException错误,并且它正试图在数组[0…1]中的索引2处查找对象。我的理解是,程序认为数组中的某个点中存在一个不存在的对象

我已经尝试了[picker reloadAllComponents]方法,并在每次选择按钮时调用它,但如上所述,它只工作一次,然后退出。奇怪的是,如果我为第二组代码选择我按下的按钮,它就可以完美地工作。当我选择一个按钮使UIPickerView不得不改变它的视图时,它崩溃了

我对iOS开发和Objective C非常陌生,希望有人知道我做错了什么。我将发布你们需要的任何代码,并发布一些示例,以了解正在发生的事情

下面是一个按钮方法,它将int设置为2,并调用该方法来显示选择器

-(IBAction)linePopupPicker{
picker = 2;
[self pickerShow];
}
这段代码是另一种方法,它与另一种方法几乎相同。我知道我还没有在第二个按钮中实现UserDefaults

-(IBAction)namePicker{
field  = 1;
picker = 1;
NSLog(@"The value of field is:%i", field);
NSUserDefaults *pickerViewSelectionDefaults = [NSUserDefaults standardUserDefaults];
[tipPicker selectRow:[pickerViewSelectionDefaults integerForKey:@"pickerViewSelectionKey"] inComponent:0 animated:NO];
[tipPicker selectRow:[pickerViewSelectionDefaults integerForKey:@"pickerViewNameColor"] inComponent:1 animated:NO];
[tipPicker selectRow:[pickerViewSelectionDefaults integerForKey:@"pickerViewNameFontSize"] inComponent:2 animated:NO];

[self pickerShow];
}
这是调用UIPickerView的方法。我有它,所以它出现在视图上,而不是静止的。我认为这将是重新加载组件的最佳位置

-(IBAction)pickerShow{

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
CGAffineTransform transform = CGAffineTransformMakeTranslation(0, 240);
pickerView.transform = transform;
[self.view addSubview:pickerView];


[tipPicker reloadAllComponents];


[UIView commitAnimations];  
}
最后,这里只是整个UIPickerView需要调用的各种方法中使用的代码示例

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
if (picker ==2) {
    switch (component)
    {
        case 0:
        {
            UILabel *lineColorLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 130, 44)] autorelease];
            lineColorLabel.backgroundColor = [UIColor clearColor];
            NSString *lineTempColor = [colorArray1 objectAtIndex:row]; 
            //NSLog(@"The String Color Name:%@", tempColor);
            UIColor *myColor1 = [UIColor performSelector:NSSelectorFromString(lineTempColor)];
            lineColorLabel.backgroundColor =  myColor1;
            return lineColorLabel;
        }
        case 1:
        {
            UILabel *alphaLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0,40, 44)] autorelease];
            alphaLabel.text = [alphaArray objectAtIndex:row];
            alphaLabel.font = [UIFont systemFontOfSize:18];
            alphaLabel.textAlignment = UITextAlignmentCenter;
            alphaLabel.backgroundColor = [UIColor clearColor];
            alphaLabel.shadowColor = [UIColor whiteColor];
            return alphaLabel;
        }
        default:
            break;
    }
}

else if (picker == 1) 
 {
    switch (component)
    {
        case 0:
        {
            UILabel *fontLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 130, 44)] autorelease];
            fontLabel.backgroundColor = [UIColor clearColor];
            fontLabel.shadowColor = [UIColor whiteColor];
            fontLabel.text = [fontNames objectAtIndex:row];
            NSString *font = [fontNames objectAtIndex:row];
            fontLabel.font = [UIFont fontWithName:font size:18.0];
            fontLabel.textAlignment = UITextAlignmentLeft;
            return fontLabel;
        }
        case 1:
        {


            UILabel *colorLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 35, 44)] autorelease];
            NSString *tempColor = [colorArray objectAtIndex:row]; 
            //NSLog(@"The String Color Name:%@", tempColor);
            UIColor *myColor = [UIColor performSelector:NSSelectorFromString(tempColor)];
            colorLabel.backgroundColor =  myColor;


            return colorLabel;
        }
        case 2:
        {
            UILabel *sizeLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0,40, 44)] autorelease];
            sizeLabel.text = [fontSizeArray objectAtIndex:row];
            sizeLabel.font = [UIFont systemFontOfSize:18];
            sizeLabel.textAlignment = UITextAlignmentCenter;
            sizeLabel.backgroundColor = [UIColor clearColor];
            sizeLabel.shadowColor = [UIColor whiteColor];
            return sizeLabel;
        }
        default:
            break;
    }

}

    return 0;
}
以下是数据方法:

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView { 
if (picker == 2) {
    return 2;
}else if (picker == 1) {
    return 3;
}

//return 3; 
}

- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component { // This method also needs to be used. This asks how many rows the UIPickerView will have.
if (picker == 2) {
    if (component == 0) {
        return [colorArray1 count];
    }
    return [alphaArray count];
}else if (picker == 1) {
    if (component == 0) {
        return [fontNames count];
    }else if (component == 1) {
        return [colorArray count];
    }
    return [fontSizeArray count];
}

}
我希望这篇文章提供了所有必要的信息来帮助我修复这个问题。我真的很感激,希望我只是错过了一些非常简单的事情。提前谢谢你

我对iOS开发和Objective C非常陌生,所以这个问题让我很困惑

if picker==2 switch语句中的情况1有一个开始大括号,但没有结束大括号

编辑


我在默认值的正上方添加了右大括号,现在如果picker==1行,我会在else上的“else”之前或在“else”之前识别出预期的错误。我也得到了同样的错误,在最后一个结束括号的方法。是的,有一个额外的。删除一个。我删除了额外的一个,并生成了代码,但我仍然从原始帖子中得到了原始错误。您可以提供如何实现数据源方法吗?它们是我在下面的viewDidLoad部分创建的数组,这是一个示例。
- (void) savePickerOne {
    [pickerViewSelectionDefaults setInteger:[tipPicker selectedRowInComponent:0] ForKey:@"pickerViewSelectionKey"];
    [pickerViewSelectionDefaults setInteger:[tipPicker selectedRowInComponent:1] ForKey:@"pickerViewNameColor"];
    [pickerViewSelectionDefaults setInteger:[tipPicker selectedRowInComponent:2] ForKey:@"pickerViewNameFontSize"];
}