I have the following code and am getting error at NSString *weight line:
* Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSArray objectAtIndex:]: index 2 beyond bounds [0 .. 1]' - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
NSArray *array;
array = [[NSArray alloc]initWithObjects:@"0", @"1/2", nil];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 300, 37)];
NSString *weight = [[array objectAtIndex:row] stringValue];
label.text = [NSString stringWithFormat:@"%@", weight]