NSLayoutManager:usesScreenFonts
Home 目次>ApplicationKit>NSLayoutManager このサイトはこちらに移転しました。

usesScreenFonts

スクリーンフォントを使うかを返します


-(BOOL) usesScreenFonts


【返り値】
   BOOLYES/NO


【解説】

スクリーンフォントを使うかを返します。



【例文】


#import "MyObject.h"

@implementation MyObject

- (
IBAction )myAction:( id )sender
{
//myOutlet TextView

NSLayoutManager *layM;
layM = [myOutlet layoutManager];

[layM setUsesScreenFonts:
YES ];
([layM usesScreenFonts])?NSLog(
@"YES" ):NSLog( @"NO" );

}

@end


(C) 2000-2009 Satoshi Oomori.
[Apple]

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

この記事を評価してください。 

良い 

間違いがある 説明がわかりにくい 例文がわかりにくい  

Home 目次>ApplicationKit>NSLayoutManager
修正日2007.4.12