1

NSNotificationCenter 経由で開始通知と停止通知を送信してアニメーション化したい NSImage 内に NSView を作成しました。

これを実現するには、どのような方法を取る必要がありますか?

私が持っているコードは次のとおりです。

@implementation SyncToolbarItemView

- (id)init
{
    self = [super initWithFrame:CGRectMake(0.0f, 0.0f, 32.0f, 32.0f)];
    if (self)
    {
        // Initialization code here.
    
        // Add observers
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(startSyncing) name:NOTIFICATION_START_CHECK_TAG_PROCESS object:nil];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(stopSyncing) name:NOTIFICATION_FINISHED_CHECK_TAG_PROCESS object:nil];
    }

    return self;
}

- (void)drawRect:(NSRect)dirtyRect
{
    // Init image
    img_sync = [[NSImageView alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, 32.0f, 32.0f)];
    [img_sync setImage:[NSImage imageNamed:@"icon_sync.png"]];

    // Add to view
    [self addSubview:img_sync];

    [img_sync release];
}

- (void) startSyncing
{

}

- (void) stopSyncing
{

}

@end
4

1 に答える 1

0

CoreAnimationリファレンスを見る必要があります。これは、NSImageViewなどのコントロールをアニメーション化する方法を非常に明確に示しています。

https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/CoreAnimation_guide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40004514-CH1-SW1

于 2012-05-15T07:06:53.493 に答える