レシーバーのクラスにポップメッセージを送ります
解説
レシーバーのクラスにポップメッセージを送ります。
返り値
( void )
なし
引数
フレームワーク
ApplicationKit
クラス
NSCursor
Instance Methods
使用可能
10.0
参照
- push
+ pop
例文
#import "MyObject.h" @implementation MyObject //Imageを作る NSImage *img; static NSCursor *cur = nil; - (IBAction)myAction:(id)sender { //NSImageを作ってファイルから読み込む img = [NSImage imageNamed: @"cuimage" ]; cur = [[NSCursor allocWithZone:[self zone]] initWithImage:img hotSpot:NSMakePoint(2.0,2.0)]; [cur push]; img = [NSImage imageNamed: @"secondImage" ]; cur = [[NSCursor allocWithZone:[self zone]] initWithImage:img hotSpot:NSMakePoint(2.0,2.0)]; [cur push]; } - (IBAction)pop:(id)sender { [cur pop]; } @end