iPodのクリックホイールのように、グルグルと円を描いて値を増減させる例です。NSViewのサブクラスで以下のような感じに。1周まわすと1.0増減します。 // // YKJogWheelView.h // #import <Cocoa/Cocoa.h> @interface YKJogWheelView : NSView { CGFloat gStartAngle; CGFloat gPreAngle; NSInteger gRotCount; } @end // // YKJogWheelView.m // #import "YKJogWheelView.h" @implementation YKJogWheelView - (id)initWithFrame:(NSRect)frame { self = [super initWithFrame:frame]; if (self) {