I am using a simple picker view, where i need to check which row has been selected, But the value of didSelectRow:(NSInteger)row, row is coming out to be 6005 which is some really big value. How do i convert this to its exact value
below is the code for details. row value is printing out as 6005.
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
NSLog(@"ROW IS %d", row);
}
Please can any one help out with this, truly appreciate your help.
Thanks djrecker