I am trying to use a font which is not a system font in the bottom way
[pickerLabelLeft setFont:[UIFont fontWithName:@"DaxOT-Bold" size:20]];
[pickerLabelLeft setFont:[UIFont fontWithName:@"Dax OT-Bold" size:20]];
[pickerLabelLeft setFont:[UIFont fontWithName:@"Dax-OT-Bold" size:20]];
But none of these is working.
But if i use like below then it can altleast get the system font with size
[pickerLabelLeft setFont:[UIFont boldSystemFontOfSize:20]];
Can anyone help me?