次のコードがあります。
UILabel *registerLabel = [ [UILabel alloc ] initWithFrame:CGRectMake(20.0, 90.0, [self screenWidth], 43.0) ];
registerLabel.textAlignment = NSTextAlignmentLeft;
registerLabel.textColor = [UIColor whiteColor];
registerLabel.backgroundColor = [UIColor blackColor];
registerLabel.font = [UIFont fontWithName:@"Helvetica Neue" size:(20.0)];
//registerLabel.adjustsFontSizeToFitWidth = YES;
registerLabel.text = @"Register";
しかし、ios 7 のデモ アプリ (カレンダーなど) の一部では、フォントが大きくてもかなり細いことがわかります。Helevetica Neue Light を使用してみましたが、うまくいきません。フォントを細くする方法はありますか、または使用しているフォントは何ですか?