OSXでメニュー項目をクリックすると、メニューが閉じる前に項目が1回点滅(on-off-on-close)します。
私は自分自身にその行動をどのように模倣できるかを尋ねていました。(NSCollectionViewを使用してメニューを再実装しました。アイテムの選択とクリックは両方とも機能します)
私はそれがうまくいかなかった2つの考えを試しました:
mouseOver = false;
[self drawRect:self.bounds];
mouseOver = true;
[self drawRect:self.bounds];
[[self window] performSelector:@selector(orderOut:) withObject:nil afterDelay:0.1];
と
mouseOver = false;
[self setNeedsDisplayInRect:self.bounds];
[self needsDisplay];
mouseOver = true;
[self setNeedsDisplayInRect:self.bounds];
[self needsDisplay];
[[self window] performSelector:@selector(orderOut:) withObject:nil afterDelay:0.1];