Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had an application which was working fine till ios5.1. But recently with ios6 it has started giving crash when I try to select a row in a component programmatically. Following is my code:

UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 40, 320, 216)];
pickerView.delegate=self;
pickerView.dataSource=self;
pickerView.showsSelectionIndicator=YES;
[pickerView setTag:10];
//[pickerView selectRow:0 inComponent:0 animated:YES];
int index1 = [arrHours indexOfObject:[arrTitle objectAtIndex:0]];
int index2 = [arrMins indexOfObject:[arrTitle objectAtIndex:1]];

[actionSheet addSubview:pickerView];
[pickerView selectRow:index1 inComponent:0 animated:YES];
[pickerView selectRow:index2 inComponent:1 animated:YES];
[pickerView release];

It runs fine when I try to select row in component 0 but I get crash when I try to select row in component 1.

Can someone please help me?

Regards Pankaj

share|improve this question
try printing the array .check if the datasource array is null or not? – AppleDelegate Sep 28 '12 at 11:08
yes checking the data helped me. I have added my answer. – pankaj Oct 7 '12 at 15:57

1 Answer

up vote 0 down vote accepted

ok found the error on debugging. The problem was because of 00 in the data. Earlier framework was converting it to 0 by itself but in new sdk (ios6) it started producing error when I was considering 00 as 0.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.