I have a NSPopUpButton which contains either English or Japanese Strings read from a plist file according to the System's Language. Now when the Language is English I am able to change the font size by using code such as -
[auxStatePopup setFont: [NSFont fontWithName:@"Helvetica-BoldOblique" size:10.0]];
but Using such technique I am not able to change Japanese font size even if I tried by setting some Japanese font name which I googled and found out. I want to do that because Japanese characters move slightly up when used. I intend to manipulate that upward movement by decreasing font size. Thanks for any help..
OR
any way to move text in NSPopupButton downwards?