NSFontManager:removeCollection:
Home 目次>ApplicationKit>NSFontManager
10.3

removeCollection:

コレクションを削除します


-(BOOL) removeCollection:(NSString *)collectionName


【返り値】
   BOOLYES/NO
【パラメータ】
   collectionName


【解説】

コレクションを削除します。



【例文】


#import "Controller.h"

@implementation Controller

- (
IBAction )pushButton:( id )sender
{

NSFontManager *fMgr = [NSFontManager sharedFontManager];

[fMgr addCollection:
@"collectionName" options: NSFontCollectionApplicationOnlyMask];

([fMgr removeCollection:
@"collectionName" ]) ? NSLog( @"YES" ) : NSLog( @"NO" ) ;
}


@end


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

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

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

良い 

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

Home 目次>ApplicationKit>NSFontManager
修正日2006.12.26