| Home 目次>ApplicationKit>NSGraphicsContext | |
focusStack
フォーカスされたオブジェクトのポインタを返します
-(void *) focusStack
【返り値】 | |
| void * | なし |
【解説】
フォーカスされたオブジェクトのポインタを返します。
【例文】
#import "Controller.h"
@implementation Controller
- (IBAction)pushButton:(id)sender
{
NSGraphicsContext *gCon =
[NSGraphicsContext graphicsContextWithWindow:[sender window] ];
void *gConPointer;
gConPointer = [gCon focusStack];
NSLog([NSString stringWithFormat:@"%d",gConPointer]);
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSGraphicsContext | 修正日2006.12.26 |