macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

xHeight

エックスハイトを返します

解説

エックスハイト(小文字の高さ)を返します。

返り値

( float )

エックスハイト

引数

フレームワーク

ApplicationKit

クラス

NSFont

Instance Methods

使用可能

10.0

参照

- ascender
- descender

例文

#import "MyView.h"

//MyViewはNSViewのサブクラス
@implementation MyView

-(void)drawRect:(NSRect)rect
{
	NSFont *font =[NSFont userFontOfSize:180.0];
	NSLog([font fontName]);
	NSBezierPath *thePath = [NSBezierPath bezierPath];
	NSGlyph glyphID[2]={43,72};
			
			[thePath moveToPoint:NSMakePoint(0,0)];
			[thePath appendBezierPathWithGlyphs:&glyphID[0]
										count:2
										inFont:font
											];
			[[NSColor blueColor] set];
			[thePath fill];

			NSLog(@"%f",[font xHeight]);
			
}

@end