macOS/iOS API解説

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

目次

lineSpacingAfterGlyphAtIndex:withProposedLineFragmentRect:

-(float)lineSpacingAfterGlyphAtIndex:(unsigned)glyphIndex:
           withProposedLineFragmentRect:(NSRect )rect :

解説

調査中...
Mac OS X v10.4以降使用不可です。

返り値

( float )

浮動小数点値)

引数

( unsigned )glyphIndex
( NSRect  )rect 

フレームワーク

ApplicationKit

クラス

NSATSTypesetter

Instance Methods

使用可能

10.3

参照

例文

NSLog([NSString stringWithFormat:@"%f",
            [atsTypesetter lineSpacingAfterGlyphAtIndex:1250
                            withProposedLineFragmentRect:NSMakeRect(0,0,30,30)
                            ]]);