タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

iphoneとcodeに関するgriffin-stewieのブックマーク (1)

  • ジョグホイール | Objective-Audio

    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) {

    griffin-stewie
    griffin-stewie 2008/10/21
    iPodのクリックホイールのように、グルグルと円を描いて値を増減させる例です。NSViewのサブクラスで以下のような感じに。1周まわすと1.0増減します。
  • 1