I have gone through this answer and others. I can't seem to center these columns.
This is my code:
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view{
NSLog(@"%s", __FUNCTION__);
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 120.0, 44.01)];
label.backgroundColor = [UIColor clearColor];
label.textColor = [UIColor whiteColor];
label.textAlignment = NSTextAlignmentCenter;
label.font = [UIFont fontWithName:@"HelveticaNeue-Thin" size:18];
label.text = [NSString stringWithFormat:@" %d", row+1];
return label;
}
Any ideas what I'm doing wrong?
Update with IB attributes inspector: