我正在尝试在我的应用程序中显示单个UIPickerView,并且根据选择的按钮,UIPickView将弹出并填充所选按钮的相关数据。不确定它是否重要但是一个UIPickerView有三列,一个有两列。我可以让它们在完全独立的情况下完美地工作,但是我将它们嵌入到if语句中的分钟。
第三次当我选择触发相反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非常陌生,所以这个问题真的让我感到困惑。
答案 0 :(得分:0)
case 1
switch语句中的 if ( picker == 2)
有一个左括号但没有结束。
修改强>
- (void) savePickerOne {
[pickerViewSelectionDefaults setInteger:[tipPicker selectedRowInComponent:0] ForKey:@"pickerViewSelectionKey"];
[pickerViewSelectionDefaults setInteger:[tipPicker selectedRowInComponent:1] ForKey:@"pickerViewNameColor"];
[pickerViewSelectionDefaults setInteger:[tipPicker selectedRowInComponent:2] ForKey:@"pickerViewNameFontSize"];
}