macOS/iOS API解説

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

目次

pop

レシーバーのクラスにポップメッセージを送ります

解説

レシーバーのクラスにポップメッセージを送ります。

返り値

( 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