Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6109075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:21:52+00:00 2026-05-23T14:21:52+00:00

I have an NSView which covers its parent window’s content view. This view has

  • 0

I have an NSView which covers its parent window’s content view. This view has a click event handler which removes it from the content view. Inside this view, I have another view. When I drag the mouse in this inner view, the mouse events are applied not only to the view in the front, but also to the views behind. Additionally, the cursors from the views behind are showing up as well. This is the same problem occurring here: NSView overlay passes mouse events to underlying subviews? but the answer there won’t work for my project because I can’t open another window.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T14:21:53+00:00Added an answer on May 23, 2026 at 2:21 pm

    Without seeing your event-handling code it’s difficult to know what’s happening, but I suspect you might be calling super‘s implementation of the various event-handling methods in your implementations.

    NSView is a subclass of NSResponder, so by default un-handled events are passed up the responder chain. The superview of a view is the next object in the responder chain, so if you call, for example, [super mouseDown:event] in your implementation of ‑mouseDown:, the event will be passed to the superview.

    The fix is to ensure you don’t call super‘s implementation in your event handlers.

    This is incorrect:

    - (void)mouseDown:(NSEvent*)anEvent
    {
        //do something
        [super mouseDown:event];
    }
    

    This is correct:

    - (void)mouseDown:(NSEvent*)anEvent
    {
        //do something
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a window which has a custom NSView and has a bottom bar
I have an NSStatusItem that has an NSMenuItem which contains a custom NSView. this
I have a custom NSView which contains a subview—for the purposes of solving this
I have a window with an subclass of NSView in it. Inside the view,
I have a view MyView , and it has images which I want to
I have a custom NSView (MyView), which is rendered by the NSViewCollectionItem. MyView has
Here's the setup: I have a NSView which is a CALayer-backed view, and contains
I have an NSView in which the user can draw circles. These circles are
I have question about NSView: Imagine a Custom View where the mouseDown, mouseDrag and
The problem I have a transparent NSView on a transparent NSWindow . The view's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.