美文网首页
Mac小知识点

Mac小知识点

作者: drmi | 来源:发表于2020-02-18 14:23 被阅读0次

    1、OS X中NSView没有backgroundColor这个属性,所以无法直接设置:
    CALayer *viewLayer = [CALayer layer];
    NSView *backgroundView= [[NSView alloc]init];
    [backgroundView setWantsLayer:YES];
    [backgroundView setLayer:viewLayer];
    backgroundView.layer.backgroundColor = [NSColor colorWithRed:0.14 green:0.62 blue:0.93 alpha:1.0].CGColor;
    [backgroundView setNeedsDisplay:YES];

    2、监听window的拖动之后的frame
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenResize) name:NSWindowDidMoveNotification object:nil];

    • (void)screenResize
      {
      // NSLog(@"聊天窗口的移动:%@", NSStringFromRect([DDMainWindowController instance].window.frame));
      //处理自己的逻辑
      }

    相关文章

      网友评论

          本文标题:Mac小知识点

          本文链接:https://www.haomeiwen.com/subject/rsegfhtx.html