当前位置:   article > 正文

macOS - 监听全局事件_macos 可能会限制对键盘事件的全局监听

macos 可能会限制对键盘事件的全局监听

1. 监听全局键盘事件

在macOS开发中,我们时常会有一些要监听鼠标或者键盘全局事件的需求, 比如按下option键,显示view

代码:

- (void)awakeFromNib
{
   [super awakeFromNib];
   if (self) {
       
       __weak typeof(self) weakSelf = self;
      self.globalEventMonitor = [NSEvent addGlobalMonitorForEventsMatchingMask:NSEventMaskFlagsChanged handler:^(NSEvent * _Nonnull event) {
           NSLog(@"Victor-Debug:  Global");
//           [NSEvent removeMonitor:weakSelf.globalEventMonitor];
       }];
       
       self.localEventMonitor = [NSEvent addLocalMonitorForEventsMatchingMask:NSEventMaskFlagsChanged handler:^NSEvent * _Nullable(NSEvent * event) {
           NSLog(@"Victor-Debug:  Local");
//            [NSEvent removeMonitor:weakSelf.localEventMonitor];
           return event;
       }];
       
   }
}

- (void)dealloc
{
   [NSEvent removeMonitor:self.localEventMonitor];
   [NSEvent removeMonitor:self.globalEventMonitor];
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

在系统中加入一个回调,根据参数条件执行block.

  • 最后要注意移除监视器

2. 判断鼠标是否按下

1). 在NSView中添加flag: isMouseDown

在下面的API中设置flag值

- (void)mouseDown:(NSEvent *)event;
- (void)rightMouseDown:(NSEvent *)event;
- (void)otherMouseDown:(NSEvent *)event;
- (void)mouseUp:(NSEvent *)event;
- (void)rightMouseUp:(NSEvent *)event;
  • 1
  • 2
  • 3
  • 4
  • 5

2). 利用NSEvent的类变量

open class var pressedMouseButtons: Int { get }
  • 1

1:鼠标左键被按下
2:鼠标右键键被按下
3:鼠标左键和右键同时被按下

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/382867
推荐阅读
相关标签
  

闽ICP备14008679号